 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 body {
     font-family: 'Inter', sans-serif;
     color: #0a0a0a;
     background: #fff;
     line-height: 1.6;
     overflow-x: hidden;
 }
 /* Navbar */
 
 nav.navbar {
     position: fixed !important;
     width: 100%;
     padding: 1rem 0 !important;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     z-index: 1000;
     transition: all 0.3s ease;
     top: 0;
 }
 
 nav.scrolled {
     padding: 1rem 0;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 }
 
 .nav-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 4rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }
 
 .logo {
     font-size: 1.35rem;
     font-weight: 600;
     color: #0a0a0a;
     text-decoration: none;
     letter-spacing: -0.5px;
 }
 
 .logo img {
     height: 45px;
     width: auto;
     margin-right: 10px;
 }
 
 .nav-links {
     display: flex;
     gap: 1.25rem;
     list-style: none;
     align-items: center;
 }
 
 .nav-links a {
     color: #262626;
     text-decoration: none;
     font-size: 0.94rem;
     font-weight: 500;
     transition: color 0.3s ease;
     position: relative;
     text-transform: capitalize;
 }
 
 .nav-links a:hover {
     color: #0a0a0a;
 }
 
 .nav-links a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 0;
     background: #013668;
     transition: width 0.3s ease;
 }
 
 .nav-links a:hover::after {
     width: 100%;
 }
 /* Hero */
 
 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding: 10rem 4rem 6rem;
     background-color: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
     position: relative;
     overflow: hidden;
     background: url(../images/hero-bg3.jpg) no-repeat;
     background-size: cover;
 }
 
 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
 }
 
 .hero-container {
     margin: 0 auto;
     width: 100%;
     position: relative;
     z-index: 1;
     text-align: right;
 }
 
 .hero h1 {
     font-size: 4.5rem;
     font-weight: 300;
     letter-spacing: -3px;
     line-height: 1.1;
     margin-bottom: 2rem;
     max-width: 100%;
     color: #000000;
     animation: fadeInUp 0.8s ease;
     text-align: right;
 }
 
 .hero h1 strong {
     font-weight: 600;
     background: linear-gradient(135deg, #000000 0%, #000000 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }
 
 .hero p {
     font-size: 1rem;
     color: rgb(0 0 0 / 80%);
     max-width: 650px;
     margin-bottom: 3rem;
     font-weight: 500;
     line-height: 1.8;
     animation: fadeInUp 0.8s ease 0.2s backwards;
     text-align: end;
     max-width: 100%;
 }
 
 .hero-badges {
     display: flex;
     gap: 2rem;
     margin-bottom: 3rem;
     flex-wrap: wrap;
     animation: fadeInUp 0.8s ease 0.3s backwards;
     justify-content: flex-end;
 }
 
 .badge-item {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     color: rgba(255, 255, 255, 0.7);
     font-size: 0.9rem;
     background: #013469;
     padding: 5px 15px;
     border-radius: 5px;
 }
 
 .badge-icon {
     width: 8px;
     height: 8px;
     background: #4CAF50;
     border-radius: 50%;
     animation: pulse 2s ease infinite;
 }
 
 @keyframes pulse {
     0%,
     100% {
         opacity: 1;
     }
     50% {
         opacity: 0.4;
     }
 }
 
 .cta-button {
     display: inline-block;
     padding: 1.2rem 3rem;
     background: #013668;
     color: #FFF;
     text-decoration: none;
     border-radius: 50px;
     font-size: 0.95rem;
     font-weight: 600;
     transition: all 0.3s ease;
     animation: fadeInUp 0.8s ease 0.4s backwards;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
 }
 
 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
     background: #3f3f3f;
 }
 /* Trust Indicators */
 
 .trust-section {
     background: #000000;
     padding: 3rem 4rem;
     border-bottom: 1px solid #e5e5e5;
 }
 
 .trust-container {
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 3rem;
 }
 
 .trust-item {
     display: flex;
     align-items: center;
     gap: 1rem;
 }
 
 .trust-icon {
     flex-shrink: 0;
     width: 50px;
     height: 50px;
     background: #4a4a4a;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-weight: 700;
     font-size: 1.2rem;
 }
 
 .trust-text h4 {
     font-size: 1.25rem;
     font-weight: 700;
     margin-bottom: 0.2rem;
     color: #FFF;
 }
 
 .trust-text p {
     font-size: 0.85rem;
     color: #ffffff;
     margin: 0;
 }
 /* Section */
 
 section {
     padding: 8rem 4rem;
     margin: 0 auto;
     background: #f2f8ff;
 }
 
 .section-header {
     margin-bottom: 2rem;
 }
 
 .label {
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     color: #999;
     font-weight: 600;
     margin-bottom: 1.5rem;
     display: inline-block;
     padding: 0.5rem 1rem;
     background: rgba(0, 0, 0, 0.03);
     border-radius: 20px;
 }
 
 h2 {
     font-size: 3.5rem;
     font-weight: 300;
     letter-spacing: -2px;
     line-height: 1.2;
     margin-bottom: 1rem;
 }
 
 h2 strong {
     font-weight: 700;
 }
 
 .section-description {
     font-size: 1rem;
     color: #666;
     line-height: 1.8;
     font-weight: 300;
 }
 /* About with Image */
 
 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 6rem;
     align-items: center;
 }
 
 .about-image {
     width: 100%;
     height: 500px;
     background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
 }
 
 .about-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }
 /* Values */
 
 .values-list {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 3rem;
     margin-top: 4rem;
 }
 
 .value-item {
     padding: 1.5rem;
     background: #fff;
     border: 1px solid #e5e5e5;
     border-radius: 15px;
     transition: all 0.3s ease;
 }
 
 .value-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
     border-color: #c5c5c5;
 }
 
 .value-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #0a0a0a 0%, #333 100%);
     border-radius: 15px;
     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 1.5rem;
     font-weight: 700;
 }
 
 .value-content h4 {
     font-size: 1.3rem;
     margin-bottom: 1rem;
     font-weight: 600;
 }
 
 .value-content p {
     color: #666;
     line-height: 1.8;
     font-size: 0.95rem;
 }
 /* Stats */
 
 .stats-section {
     background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
     padding: 8rem 4rem;
     margin: 0;
     max-width: 100%;
     color: #FFF;
     position: relative;
     overflow: hidden;
 }
 
 .stats-section::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 50%;
     height: 100%;
     background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
 }
 
 .stats-grid {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 4rem;
     position: relative;
     z-index: 1;
 }
 
 .stat {
     text-align: center;
     padding: 2rem;
     border-radius: 15px;
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
 }
 
 .stat:hover {
     background: rgba(255, 255, 255, 0.05);
     transform: translateY(-5px);
 }
 
 .stat-number {
     font-size: 4rem;
     font-weight: 700;
     letter-spacing: -2px;
     margin-bottom: 0.5rem;
     background: linear-gradient(135deg, #fff 0%, #999 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }
 
 .stat-label {
     color: #999;
     font-size: 1rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     font-size: 0.85rem;
     font-weight: 500;
 }
 
 li.contact-btn a {
     background: #013668;
     padding: 10px 30px !important;
     border-radius: 42px;
     color: #FFF !important;
     font-weight: 600;
 }
 
 li.contact-btn a:after {
     content: none !important;
 }
 /* Capabilities Grid */
 
 .grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1rem;
     margin-top: 6rem;
 }
 
 .grid-image img {
     width: calc(100%);
     margin-bottom: 20px;
     border-radius: 13px;
     height: 240px;
     object-fit: cover;
 }
 
 .grid-item {
     padding: 1rem 1.25rem;
     background: #fff;
     border: 1px solid #e5e5e5;
     border-radius: 20px;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }
 
 .grid-item::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 4px;
     height: 0;
     background: linear-gradient(180deg, #0a0a0a 0%, #666 100%);
     transition: height 0.4s ease;
 }
 
 .grid-item:hover::before {
     height: 100%;
 }
 
 .grid-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
     border-color: #0a0a0a;
 }
 
 .grid-item h3 {
     font-size: 1rem;
     font-weight: 700;
     margin-bottom: 1rem;
     letter-spacing: -0.5px;
 }
 
 .grid-item p {
     color: #666;
     line-height: 1.8;
     font-size: 0.89rem;
 }
 
 .grid-icon {
     width: 50px;
     height: 50px;
     background: #f5f5f5;
     border-radius: 12px;
     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
 }
 /* Leadership Section */
 
 .leadership-section {
     background: #101010;
     padding: 2rem 4rem 4rem;
     width: 100% !important;
 }
 
 .leadership-content {
     max-width: 1400px;
     margin: 0 auto;
 }
 
 .chairman-card {
     background: #fff;
     border-radius: 20px;
     padding: 4rem;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
     border: 1px solid #e5e5e5;
 }
 
 .chairman-info {
     display: flex;
     align-items: center;
     gap: 2rem;
     margin-bottom: 2rem;
     padding-bottom: 2rem;
     border-bottom: 1px solid #e5e5e5;
 }
 
 .chairman-photo {
     width: 100px;
     height: 100px;
     background: linear-gradient(135deg, #0a0a0a 0%, #333 100%);
     border-radius: 50%;
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 
 .chairman-details h3 {
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 0.3rem;
 }
 
 .chairman-details p {
     color: #666;
     font-size: 0.95rem;
 }
 
 .chairman-quote {
     font-size: 1.1rem;
     line-height: 1.9;
     color: #333;
     font-style: italic;
 }
 /* CTA Section */
 
 .cta-section {
     text-align: center;
     padding: 8rem 4rem;
     background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
 }
 /* Team Grid */
 
 .team-section {
     padding: 12rem 4rem 8rem;
     background: #f8f9fa;
     min-height: 100vh;
 }
 
 .team-container {
     max-width: 1400px;
     margin: 0 auto;
 }
 
 .team-label {
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 3px;
     color: #d4a574;
     font-weight: 600;
     margin-bottom: 1.5rem;
     text-align: center;
 }
 
 .team-title {
     font-size: 3.5rem;
     font-weight: 400;
     letter-spacing: -1px;
     line-height: 1.2;
     margin-bottom: 1.5rem;
     text-align: center;
     color: #1a1a1a;
 }
 
 .team-subtitle {
     font-size: 1.1rem;
     color: #666;
     text-align: center;
     max-width: 800px;
     margin: 0 auto 5rem;
     line-height: 1.8;
 }
 
 .team-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1rem;
     margin-top: 4rem;
 }
 
 .team-card {
     background: #fff;
     border: 1px solid #e5e5e5;
     border-radius: 0;
     padding: 0;
     transition: all 0.3s ease;
     overflow: hidden;
 }
 
 .team-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     border-color: #d4a574;
 }
 
 .team-card-icon {
     width: 100%;
     height: 240px;
     background: #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 4rem;
     color: #1a1a1a;
 }
 
 .team-card-icon .team-image {
     width: calc(100%);
     height: 240px;
     object-fit: scale-down;
 }
 
 .team-card-content {
     padding: 2.5rem 2rem;
 }
 
 .team-card-name {
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
     color: #1a1a1a;
     letter-spacing: -0.5px;
 }
 
 .team-card-position {
     font-size: 0.75rem;
     color: #d4a574;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     font-weight: 600;
     margin-bottom: 1.25rem;
     line-height: 1.6;
 }
 
 .team-card-description {
     color: #666;
     font-size: 0.95rem;
     line-height: 1.7;
 }
 
 @media (max-width: 968px) {
     .team-section {
         padding: 8rem 2rem 6rem;
     }
     .team-title {
         font-size: 2.5rem;
     }
     .team-grid {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
 }
 /* Footer */
 
 footer {
     background: #021a31;
     color: #999;
     padding: 5rem 4rem 3rem;
 }
 
 .footer-container {
     max-width: 1400px;
     margin: 0 auto;
 }
 
 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 4rem;
     margin-bottom: 3rem;
     padding-bottom: 3rem;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }
 
 .footer-logo {
     font-size: 1.3rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 1rem;
 }
 
 .footer-location {
     font-size: 0.95rem;
     color: #dddddd;
     margin-bottom: 1.5rem;
 }
 
 .footer-title {
     color: #fff;
     font-weight: 600;
     margin-bottom: 1rem;
     font-size: 0.95rem;
 }
 
 .footer-links {
     list-style: none;
     padding: 0;
 }
 
 .footer-links li {
     margin-bottom: 0.7rem;
 }
 
 .footer-links a {
     color: #bababa;
     text-decoration: none;
     font-size: 0.9rem;
     transition: color 0.3s ease;
 }
 
 .footer-links a:hover {
     color: #fff;
 }
 
 .footer-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 0.9rem;
 }
 
 .leadership-section h2.text-white {
     background: linear-gradient(135deg, #fff 0%, #999 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }
 /* Animations */
 
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }
 /* Responsive */
 
 @media (max-width: 968px) {
     .nav-container {
         padding: 0 2rem;
     }
     .nav-links {
         gap: 1.5rem;
     }
     .hero {
         padding: 8rem 2rem 4rem;
     }
     .hero h1 {
         font-size: 3rem;
         letter-spacing: -2px;
     }
     .about-content {
         grid-template-columns: 1fr;
         gap: 3rem;
     }
     .values-list {
         grid-template-columns: 1fr;
     }
     section {
         padding: 6rem 2rem;
     }
     h2 {
         font-size: 2.5rem;
     }
     .grid {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 3rem;
     }
     .trust-container {
         flex-direction: column;
         align-items: flex-start;
     }
     .footer-grid {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
     .footer-bottom {
         flex-direction: column;
         gap: 1rem;
         text-align: center;
     }
 }
 /*Inner Page*/
 /* Page Hero */
 
 .page-hero {
     padding: 12rem 4rem 6rem;
     background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
     position: relative;
     overflow: hidden;
     background-image: linear-gradient(rgb(0 0 0 / 40%), rgb(0 14 24 / 90%)), url(https://images.unsplash.com/photo-1655763161700-8f284f0ceca9?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NTY2Nzh8MHwxfHNlYXJjaHwyfHxvaWwlMjB0YW5rZXIlMjBzaGlwJTIwb2NlYW4lMjBzdW5zZXR8ZW58MHx8fHwxNzY3NjA3NzAwfDA&ixlib=rb-4.1.0&q=85);
     background-size: cover;
     background-position: center center;
 }
 
 .page-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
     opacity: 0.5;
 }
 
 .page-hero-content {
     max-width: 1400px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }
 
 .breadcrumb {
     color: rgba(255, 255, 255, 0.6);
     margin-bottom: 2rem;
     font-size: 0.9rem;
 }
 
 .breadcrumb a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
 }
 
 .page-hero h1 {
     font-size: 4.5rem;
     font-weight: 300;
     letter-spacing: -3px;
     line-height: 1.1;
     color: #fff;
     margin-bottom: 1.5rem;
 }
 
 .page-hero h1 strong {
     font-weight: 600;
     background: linear-gradient(135deg, #fff 0%, #ccc 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }
 
 .page-hero .lead {
     font-size: 1.25rem;
     color: rgba(255, 255, 255, 0.8);
     max-width: 800px;
     line-height: 1.8;
 }
 /* Content Sections */
 
 .content-section {
     padding: 8rem 4rem;
     max-width: 1400px;
     margin: 0 auto;
 }
 
 .content-section.alt-bg {
     background: #f8f9fa;
     max-width: 100%;
 }
 
 .label {
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     color: #999;
     font-weight: 600;
     margin-bottom: 1.5rem;
     display: inline-block;
     padding: 0.5rem 1rem;
     background: rgba(0, 0, 0, 0.03);
     border-radius: 20px;
 }
 
 h2 {
     font-size: 3.5rem;
     font-weight: 300;
     letter-spacing: -2px;
     line-height: 1.2;
     margin-bottom: 2rem;
 }
 
 h2 strong {
     font-weight: 700;
 }
 
 h3 {
     font-size: 2rem;
     font-weight: 600;
     letter-spacing: -1px;
     margin-bottom: 1.5rem;
 }
 
 .intro-text {
     font-size: 1.2rem;
     color: #666;
     line-height: 2;
     margin-bottom: 3rem;
 }
 
 .body-text {
     font-size: 1.05rem;
     color: #444;
     line-height: 1.9;
     margin-bottom: 2rem;
 }
 /* Timeline */
 
 .timeline {
     position: relative;
     padding: 4rem 0;
 }
 
 .timeline::before {
     content: '';
     position: absolute;
     left: 50%;
     top: 0;
     bottom: 0;
     width: 2px;
     background: linear-gradient(180deg, #0a0a0a 0%, #999 100%);
     transform: translateX(-50%);
 }
 
 .timeline-item {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     margin-bottom: 4rem;
     position: relative;
 }
 
 .timeline-item:nth-child(even) .timeline-content {
     grid-column: 2;
 }
 
 .timeline-item:nth-child(even) .timeline-year {
     grid-column: 1;
     text-align: right;
 }
 
 .timeline-year {
     font-size: 3rem;
     font-weight: 700;
     color: #0a0a0a;
     letter-spacing: -2px;
 }
 
 .timeline-content {
     background: #fff;
     padding: 2rem;
     border-radius: 15px;
     border: 1px solid #e5e5e5;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }
 
 .timeline-content h4 {
     font-size: 1.3rem;
     margin-bottom: 1rem;
     font-weight: 600;
 }
 /* Chairman Message Section */
 
 .chairman-message-section {
     padding: 4rem 4rem 8rem;
     background: #f8f9fa;
     min-height: 100vh;
 }
 
 .chairman-message-container {
     max-width: 900px;
     margin: 0 auto;
 }
 
 .section-label {
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 3px;
     color: #d4a574;
     font-weight: 600;
     margin-bottom: 10px;
     text-align: center;
 }
 
 .section-title {
     font-size: 30px;
     font-weight: 400;
     letter-spacing: -1px;
     line-height: 1.2;
     margin-bottom: 30px;
     text-align: center;
     color: #1a1a1a;
     font-family: 'Georgia', serif;
 }
 
 .chairman-card-alt {
     background: #fff;
     border-radius: 0;
     padding: 5rem 4rem;
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
 }
 
 .chairman-header {
     text-align: center;
     margin-bottom: 3rem;
     padding-bottom: 3rem;
     border-bottom: 1px solid #e5e5e5;
 }
 
 .chairman-initials {
     width: 918px;
     background: #f5f5f5;
     border-radius: 5px;
     margin: 0 auto 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     font-weight: 600;
     color: #666;
     overflow: hidden;
     margin-top: 50px;
 }
 
 .chairman-name {
     font-size: 1.8rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
     color: #1a1a1a;
     letter-spacing: -0.5px;
 }
 
 .chairman-title {
     font-size: 0.85rem;
     color: #d4a574;
     text-transform: uppercase;
     letter-spacing: 2px;
     font-weight: 600;
 }
 
 .chairman-message-content {
     color: #444;
     font-size: 1.05rem;
     line-height: 2;
 }
 
 .chairman-message-content p {
     margin-bottom: 2rem;
 }
 
 .chairman-message-content p:last-child {
     font-weight: 600;
     color: #1a1a1a;
     margin-top: 3rem;
 }
 
 .chairman-signature {
     margin-top: 4rem;
     padding-top: 2rem;
     border-top: 1px solid #e5e5e5;
     color: #999;
     font-size: 0.9rem;
 }
 
 .team-card-icon svg {
     width: 72px;
     height: 72px;
 }
 
 a.cta-button.btn-yellow {
     background: #ffc107;
     color: #013668;
 }
 /* Contact Page */
 
 .contact-page-section {
     padding: 12rem 4rem 8rem;
     background: #f8f9fa;
     min-height: 100vh;
 }
 
 .contact-container {
     max-width: 1200px;
     margin: 0 auto;
 }
 
 .contact-header {
     text-align: center;
     margin-bottom: 5rem;
 }
 
 .contact-label {
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 3px;
     color: #d4a574;
     font-weight: 600;
     margin-bottom: 1.5rem;
 }
 
 .contact-title {
     font-size: 3.5rem;
     font-weight: 400;
     letter-spacing: -1px;
     line-height: 1.2;
     margin-bottom: 1.5rem;
     color: #1a1a1a;
 }
 
 .contact-subtitle {
     font-size: 1.1rem;
     color: #666;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.8;
 }
 
 .contact-content {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 4rem;
     align-items: start;
 }
 
 .contact-info-section h3 {
     font-size: 1.8rem;
     font-weight: 600;
     margin-bottom: 2rem;
     color: #1a1a1a;
 }
 
 .contact-info-item {
     display: flex;
     gap: 1.5rem;
     margin-bottom: 2rem;
 }
 
 .contact-icon svg {
     width: 28px;
 }
 
 .contact-icon {
     width: 50px;
     height: 50px;
     background: #daa426;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     color: #fff;
     font-size: 1.2rem;
 }
 
 .contact-info-text h4 {
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 0.3rem;
     color: #1a1a1a;
 }
 
 .contact-info-text p {
     color: #666;
     margin: 0;
     font-size: 0.95rem;
 }
 
 .global-presence-box {
     background: #013668;
     color: #fff;
     padding: 2.5rem;
     border-radius: 12px;
     margin-top: 3rem;
 }
 
 .global-presence-box h4 {
     font-size: 1.4rem;
     font-weight: 600;
     margin-bottom: 1rem;
     color: #fff;
 }
 
 .global-presence-box p {
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.8;
     margin: 0;
 }
 
 .contact-form-section {
     background: #fff;
     padding: 3rem;
     border-radius: 12px;
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
 }
 
 .contact-form-section h3 {
     font-size: 1.8rem;
     font-weight: 600;
     margin-bottom: 2rem;
     color: #1a1a1a;
 }
 
 .form-group {
     margin-bottom: 1.5rem;
 }
 
 .form-group label {
     font-size: 0.85rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     color: #333;
     margin-bottom: 0.5rem;
     display: block;
 }
 
 .form-group label .required {
     color: #d4a574;
 }
 
 .form-control {
     width: 100%;
     padding: 0.9rem 1rem;
     border: 1px solid #e5e5e5;
     border-radius: 8px;
     font-size: 0.95rem;
     transition: all 0.3s ease;
     font-family: 'Inter', sans-serif;
 }
 
 .form-control:focus {
     outline: none;
     border-color: #d4a574;
     box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
 }
 
 textarea.form-control {
     min-height: 150px;
     resize: vertical;
 }
 
 .submit-btn {
     width: 100%;
     padding: 1.1rem;
     background: #013668;
     color: #fff;
     border: none;
     border-radius: 8px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
 }
 
 .submit-btn:hover {
     background: #013668;
     transform: translateY(-2px);
     box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
 }
 
 @media (max-width: 968px) {
     .contact-page-section {
         padding: 8rem 2rem 6rem;
     }
     .contact-title {
         font-size: 2.5rem;
     }
     .contact-content {
         grid-template-columns: 1fr;
         gap: 3rem;
     }
     .contact-form-section {
         padding: 2rem;
     }
 }
 
 @media screen and (max-width:680px) {
     .section-header {
         margin-top: 50px;
     }
     .page-hero h1 {
         letter-spacing: normal !important;
     }
     .content-section {
         padding: 4rem 1rem;
     }
     .chairman-info {
         display: block;
     }
     .chairman-card {
         padding: 1rem;
     }
     .leadership-section {
         padding: 2rem 2rem 2rem;
     }
     .chairman-photo {
         margin: 0 auto 20px;
     }
     .chairman-details {
         text-align: center;
     }
     .page-hero {
         padding: 6rem 1rem 2rem;
     }
     .page-hero h1 {
         font-size: 1.5rem;
     }
     nav.navbar {
         position: relative;
     }
     .logo img {
         max-width: 200px;
         height: initial !important;
     }
     .about-image img,
     .about-image {
         height: 240px;
     }
     h2 {
         font-size: 2.5rem !important;
     }
     .trust-section {
         padding: 3rem 2rem !important;
     }
     .stats-section {
         padding: 2rem 2rem;
     }
     .stats-grid {
         grid-template-columns: repeat(1, 1fr);
         gap: 3rem;
     }
 }
 
 .chairman-initials img {
     width: calc(100%);
     height: 200px;
     opacity: 0.3;
 }
 
 .video-wrapper {
     position: relative;
 }
 
 .sound-btn {
     position: absolute;
     bottom: 20px;
     right: 20px;
     z-index: 10;
     background: rgba(0, 0, 0, 0.7);
     color: #fff;
     border: none;
     padding: 8px 16px;
     border-radius: 30px;
     cursor: pointer;
     font-size: 14px;
     opacity: 0;
     transform: translateY(10px);
     transition: opacity 0.4s ease, transform 0.4s ease;
 }
 
 .sound-btn.show {
     opacity: 1;
     transform: translateY(0);
 }
 
 .sound-btn:hover {
     background: rgba(0, 0, 0, 0.85);
 }
 
 @media (max-width: 820px) {
     video#footerVideo {
         width: 100%;
     }
     .stat-number {
         background: none;
         color: #ffffff;
         background-clip: unset;
         -webkit-text-fill-color: unset;
     }
     .stat-label {
         color: #fff;
     }
     .hero {
         width: 100%;
         background-size: 100%;
         top: 76px;
         padding: 20px 5px;
     }
     .hero h1 {
         font-size: 22px;
     }
     .hero p {
         margin-top: 120px;
         text-align: center;
         margin-bottom: 15px;
     }
     .hero-badges {
         display: block;
         margin-top: 0;
         margin-bottom: 24px;
     }
     .badge-item {
         margin-bottom: 8px;
     }
     .trust-section {
         margin-top: 71px;
     }
     section#about {
         padding: 0px 10px;
     }
     section {
         padding: 5px 10px;
     }
     .grid {
         margin-top: 10px;
     }
     section.stats-section {
         margin-top: 30px;
     }
     section#contact {
         padding: 50px 10px;
     }
     .chairman-message-section {
         padding: 50px 20px;
     }
     .chairman-card-alt {
         padding: 30px 15px;
     }
     a.cta-button.btn-yellow {
         display: block;
         text-align: center;
         margin-top: 30px;
     }
     .topImgSec img {
         height: auto !important;
     }
     .chairman-initials {
         width: 100% !important;
     }
     .chairman-initials img {
         height: auto !important;
     }
 }
 
 .video-wrapper {
     position: relative;
     background-color: #000;
     top: 88px;
     margin-bottom: 84px;
 }
 
 video#footerVideo {
     width: 100%;
 }
 
 .video-overlay {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(0, 0, 0, 0.4);
     color: #fff;
     font-size: 18px;
     cursor: pointer;
     transition: opacity 0.4s ease;
 }
 
 .video-overlay.hidden {
     opacity: 0;
     pointer-events: none;
 }
 
 .wtstext {
     background-color: #0c8b3b;
     text-align: center;
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 6px;
     padding: 6px 10px;
 }
 
 .wtstext a {
     color: #fff;
     text-decoration: none;
 }
 
 .wtstext svg {
     width: 28px;
     padding-right: 5px;
 }
 
 .topImgSec {
     width: 100%;
     margin-top: 88px;
 }
 
 .topImgSec img {
     width: 100%;
     height: 650px;
     object-fit: cover;
 }