:root{--deep-blue:#002B7F;--deep-blue-dark:#001a52;--growth-green:#00A651;--growth-green-dark:#008c44;--light-gray:#f8f9fa;--medium-gray:#e9ecef;--dark-gray:#6c757d;--text-dark:#212529;--white:#ffffff;--shadow:0 4px 12px rgba(0,0,0,0.08);--shadow-heavy:0 10px 30px rgba(0,0,0,0.15);--transition:all 0.3s ease;--transition-slow:all 0.5s ease;--border-radius:12px;--border-radius-lg:20px}*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth}body{font-family:'Inter',sans-serif;line-height:1.6;color:var(--text-dark);background-color:var(--white);overflow-x:hidden}h1,h2,h3,h4,h5,h6{font-weight:600;line-height:1.3;margin-bottom:1rem}h1{font-size:2.5rem}h2{font-size:2rem;position:relative;padding-bottom:0.5rem}h2::after{content:'';position:absolute;bottom:0;left:0;width:60px;height:3px;background-color:var(--growth-green)}p{margin-bottom:1rem}a{text-decoration:none;color:inherit;transition:var(--transition)}ul{list-style:none}.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.5rem}.btn{display:inline-block;padding:0.75rem 1.5rem;border-radius:var(--border-radius);font-weight:500;cursor:pointer;transition:var(--transition);text-align:center;border:none;position:relative;overflow:hidden;z-index:1}.btn::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);transition:var(--transition-slow);z-index:-1}.btn:hover::before{left:100%}.btn-primary{background-color:var(--deep-blue);color:var(--white)}.btn-primary:hover{background-color:var(--deep-blue-dark);transform:translateY(-2px);box-shadow:var(--shadow-heavy)}.btn-secondary{background-color:var(--growth-green);color:var(--white)}.btn-secondary:hover{background-color:var(--growth-green-dark);transform:translateY(-2px);box-shadow:var(--shadow-heavy)}.btn-outline{background-color:transparent;color:var(--deep-blue);border:2px solid var(--deep-blue)}.btn-outline:hover{background-color:var(--deep-blue);color:var(--white)}.section{padding:5rem 0}.section-light{background-color:var(--light-gray)}.section-title{text-align:center;margin-bottom:3rem}.section-title h2{display:inline-block}.section-title h2::after{left:50%;transform:translateX(-50%)}header{position:fixed;top:0;left:0;width:100%;background-color:rgba(255,255,255,0.95);box-shadow:var(--shadow);z-index:1000;transition:var(--transition);backdrop-filter:blur(10px)}.header-container{display:flex;justify-content:space-between;align-items:center}.logo{display:flex;align-items:center}.logo-img{height:40px;width:auto;margin-right:10px}.logo-text{font-size:1.5rem;font-weight:700;color:var(--deep-blue)}.logo-text span{color:var(--growth-green)}.nav-menu{display:flex}.nav-menu li{margin-left:1.5rem;position:relative}.nav-menu a{font-weight:500;position:relative;padding:0.5rem 0}.nav-menu a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background-color:var(--growth-green);transition:var(--transition)}.nav-menu a:hover::after,.nav-menu a.active::after{width:100%}.hamburger{display:none;cursor:pointer;z-index:1001}.hero{height:100vh;display:flex;align-items:center;background:linear-gradient(135deg,rgba(0,43,127,0.9) 0%,rgba(0,166,81,0.7) 100%),url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');background-size:cover;background-position:center;color:var(--white);position:relative;overflow:hidden}.hero::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');background-size:cover;background-position:center}.hero-content{position:relative;z-index:1;max-width:700px}.hero h1{font-size:3.5rem;margin-bottom:1.5rem;line-height:1.2}.hero p{font-size:1.2rem;margin-bottom:2rem;opacity:0.9}.scroll-indicator{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);color:var(--white);font-size:1.5rem;animation:bounce 2s infinite}@keyframes bounce{0%,20%,50%,80%,100%{transform:translateX(-50%) translateY(0)}40%{transform:translateX(-50%) translateY(-10px)}60%{transform:translateX(-50%) translateY(-5px)}}#about{padding:6rem 0}.about-layout{display:grid;grid-template-columns:1.2fr 1fr;gap:3rem;align-items:center}.about-content h2{color:var(--deep-blue);font-size:2.5rem;margin-bottom:1.5rem}.about-content p{color:#444;line-height:1.8;margin-bottom:1rem}.about-photo{position:relative;border-radius:var(--border-radius);overflow:hidden;box-shadow:var(--shadow-heavy);height:350px}.about-photo img{width:100%;height:100%;object-fit:cover}.about-cards-full{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:3rem}.about-card{background:var(--white);border-radius:var(--border-radius);padding:2rem;box-shadow:var(--shadow);transition:var(--transition);border-top:4px solid var(--growth-green);text-align:left}.about-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-heavy)}.about-card .icon{font-size:2rem;color:var(--growth-green);margin-bottom:0.8rem}.about-card h3{font-size:1.3rem;color:var(--deep-blue);margin-bottom:0.5rem}.about-card p{color:#555;line-height:1.6}.quote-block{background:var(--deep-blue);color:#f9f9f9;padding:2.5rem;border-radius:var(--border-radius);margin-top:3rem;text-align:center;position:relative}.quote-block::before{content:'"';font-size:5rem;position:absolute;top:-10px;left:25px;opacity:0.15;font-family:Georgia,serif}.quote-block p{font-size:1.3rem;font-style:italic;color:#eafcf3;position:relative;z-index:1}@media (max-width:992px){.about-layout{grid-template-columns:1fr}.about-photo{height:250px;order:-1}.about-cards-full{grid-template-columns:1fr}}.services-wrapper{display:flex;align-items:stretch;gap:3rem}.services-content{flex:2;display:flex;flex-direction:column;justify-content:stretch}.services-image{flex:1;display:flex;align-items:center;justify-content:center;padding-top:1rem;padding-bottom:1rem;margin-top:20px}.services-image img{width:100%;height:100%;border-radius:20px;box-shadow:0 10px 40px rgba(0,0,0,0.1);object-fit:cover;object-position:center}.services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;align-items:stretch;margin-top:2rem}@media (max-width:991px){.services-wrapper{flex-direction:column}.services-grid{grid-template-columns:1fr}.services-image{order:-1;margin-bottom:2rem;align-items:center;padding:0}.services-image img{height:auto}}.service-card.premium{background-color:var(--white);border-radius:14px;box-shadow:0 5px 18px rgba(0,0,0,0.08);transition:all 0.4s ease;display:flex;flex-direction:column;overflow:hidden;position:relative}.service-card.premium:hover{transform:translateY(-6px);box-shadow:0 10px 28px rgba(0,0,0,0.15)}.service-top{text-align:center;padding:1.2rem 1rem 0.6rem;border-bottom:1px solid rgba(0,0,0,0.05)}.service-icon{width:65px;height:65px;background:linear-gradient(135deg,var(--deep-blue),var(--growth-green));color:var(--white);font-size:1.6rem;border-radius:50%;display:flex;justify-content:center;align-items:center;margin:0 auto 0.7rem;position:relative;overflow:hidden}.service-icon::after{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:rgba(255,255,255,0.2);transition:all 0.6s ease}.service-card:hover .service-icon::after{left:100%}.service-top h3{color:var(--deep-blue);font-weight:600;font-size:1.05rem}.service-body{padding:1.2rem 1.4rem 1.5rem;flex-grow:1;display:flex;flex-direction:column;justify-content:space-between}.service-body p{font-size:0.9rem;color:#444;line-height:1.6;margin-bottom:1rem}.service-body ul{list-style:none;padding:0;margin:0}.service-body li{position:relative;padding-left:1.3rem;margin-bottom:0.5rem;color:#333;font-size:0.88rem}.service-body li::before{content:'✓';position:absolute;left:0;color:var(--growth-green);font-weight:bold}.service-tag{background-color:var(--growth-green);color:var(--white);margin-bottom:10px;font-size:0.75rem;padding:0.3rem 0.8rem;border-radius:20px;align-self:flex-start;margin-top:0.8rem;font-weight:500;box-shadow:0 3px 10px rgba(0,0,0,0.1)}.section-title{text-align:center;margin-bottom:1rem;width:100%}.section-title h2{font-size:2rem;font-weight:700;color:var(--deep-blue)}.section-title .subtitle{font-size:1rem;color:#666;max-width:650px;margin:0.5rem auto 0;line-height:1.6}#industries{background-color:var(--white);padding:5rem 0}.section-title h2{font-size:2.2rem;font-weight:700;color:var(--deep-blue)}.section-title .subtitle{font-size:1rem;color:#666;max-width:700px;margin:0.75rem auto 0;line-height:1.6}.industries-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:2rem;margin-top:3rem}.industry-card{background-color:var(--white);border-radius:16px;padding:2rem 1.5rem;text-align:center;box-shadow:0 5px 25px rgba(0,0,0,0.05);transition:all 0.4s ease;position:relative;overflow:hidden;height:100%;display:flex;flex-direction:column;justify-content:center}.industry-card::before{content:'';position:absolute;top:0;left:0;width:100%;height:5px;background:linear-gradient(90deg,var(--deep-blue),var(--growth-green));transform:scaleX(0);transform-origin:left;transition:all 0.4s ease}.industry-card:hover::before{transform:scaleX(1)}.industry-card:hover{transform:translateY(-8px);box-shadow:0 12px 28px rgba(0,0,0,0.12)}.industry-icon{width:70px;height:70px;background:linear-gradient(135deg,var(--deep-blue),var(--growth-green));color:var(--white);font-size:1.8rem;border-radius:50%;display:flex;justify-content:center;align-items:center;margin:0 auto 1rem;position:relative;overflow:hidden}.industry-icon::after{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:rgba(255,255,255,0.25);transition:all 0.5s ease}.industry-card:hover .industry-icon::after{left:100%}.industry-card h3{color:var(--deep-blue);font-size:1.1rem;font-weight:600;margin-bottom:0.5rem}.industry-card p{font-size:0.9rem;color:#555;line-height:1.5}.industry-footer{text-align:center;margin-top:3rem;max-width:800px;margin-left:auto;margin-right:auto}.industry-footer p{color:#444;font-size:0.95rem;line-height:1.6}@media (max-width:991px){.industries-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width:576px){.industries-grid{grid-template-columns:1fr}}.industry-footer{text-align:center;margin-top:4rem;padding-top:2.5rem;max-width:850px;margin-left:auto;margin-right:auto;position:relative}.industry-footer .footer-line{width:80px;height:4px;margin:0 auto 1.5rem;border-radius:5px;background:linear-gradient(90deg,var(--deep-blue),var(--growth-green));opacity:0.9}.industry-footer p{font-size:1rem;color:#333;line-height:1.8;font-weight:500;letter-spacing:0.2px;transition:color 0.3s ease}.industry-footer p strong{color:var(--deep-blue);font-weight:600}.industry-footer p .highlight{color:var(--growth-green);font-weight:600}.industry-footer:hover p{color:var(--deep-blue)}@media (max-width:768px){.industry-footer p{font-size:0.95rem;padding:0 1rem}}.global-content{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}.map-container{background-color:var(--medium-gray);height:550px;border-radius:var(--border-radius);overflow:hidden;position:relative;box-shadow:var(--shadow)}.map-placeholder{height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--deep-blue) 0%,var(--growth-green) 100%);color:var(--white);font-size:1.2rem;text-align:center;padding:2rem;position:relative;overflow:hidden}.map-placeholder::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');background-size:cover;background-position:center;opacity:0.2}.locations-list{margin-top:2rem}.location-item{display:flex;align-items:center;margin-bottom:1.5rem;padding:1rem;border-radius:var(--border-radius);transition:var(--transition)}.location-item:hover{background-color:var(--light-gray)}.location-marker{width:40px;height:40px;background-color:var(--growth-green);color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-right:1rem;flex-shrink:0}.location-text h4{margin-bottom:0.25rem;color:var(--deep-blue)}.location-text p{margin-bottom:0;color:var(--dark-gray)}.why-partner{background:linear-gradient(135deg,var(--deep-blue) 0%,var(--growth-green) 100%);color:var(--white);position:relative;overflow:hidden}.why-partner::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');background-size:cover;background-position:center}.benefits-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem}.benefit-card{background-color:rgba(255,255,255,0.1);padding:2rem;border-radius:var(--border-radius);text-align:center;backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.2);transition:var(--transition);position:relative;overflow:hidden;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.benefit-card:hover{transform:translateY(-5px);background-color:rgba(255,255,255,0.15)}.benefit-icon{font-size:2.5rem;margin-bottom:1rem;color:var(--white)}.benefit-card h3{color:var(--white);margin-bottom:1rem}.contact-container{display:grid;grid-template-columns:1fr 1fr;gap:3rem}.contact-info{background:linear-gradient(135deg,var(--deep-blue) 0%,var(--growth-green) 100%);color:var(--white);padding:2.8rem;border-radius:var(--border-radius);position:relative;overflow:hidden;height:100%;display:flex;flex-direction:column;justify-content:space-between;box-shadow:var(--shadow-heavy)}.contact-info::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(45deg,rgba(255,255,255,0.05),transparent);z-index:0}.contact-info h3{margin-bottom:1.8rem;color:var(--white);position:relative;z-index:1;font-weight:600;font-size:1.5rem}.contact-details{margin-bottom:2.5rem;position:relative;z-index:1;display:flex;flex-direction:column;gap:1.8rem}.contact-item{display:flex;align-items:flex-start;gap:1rem;padding-bottom:0.8rem;border-bottom:1px solid rgba(255,255,255,0.1);transition:all 0.3s ease}.contact-item:last-child{border-bottom:none}.contact-item:hover{transform:translateX(5px)}.contact-icon{color:var(--white);font-size:1.2rem;background-color:rgba(255,255,255,0.15);border-radius:50%;padding:0.6rem;width:36px;height:36px;display:flex;align-items:center;justify-content:center;transition:all 0.3s ease}.contact-item:hover .contact-icon{background-color:var(--growth-green);color:var(--white);box-shadow:0 0 10px rgba(0,166,81,0.6)}.contact-item h4{margin:0;color:var(--white);font-size:1rem;font-weight:600}.contact-item p{margin:2px 0 0;color:rgba(255,255,255,0.85);font-size:0.95rem}.contact-info>p{color:rgba(255,255,255,0.85);font-size:0.95rem;line-height:1.6;position:relative;z-index:1}.contact-form{background-color:var(--white);padding:2.8rem;border-radius:var(--border-radius);box-shadow:var(--shadow-heavy);height:100%;display:flex;flex-direction:column}.form-group{margin-bottom:1.5rem;position:relative}.form-group label{display:block;margin-bottom:0.5rem;font-weight:500}.form-control{width:100%;padding:0.75rem;border:1px solid var(--medium-gray);border-radius:8px;font-family:'Inter',sans-serif;transition:var(--transition)}.form-control:focus{outline:none;border-color:var(--deep-blue);box-shadow:0 0 0 3px rgba(0,43,127,0.1)}textarea.form-control{min-height:150px;resize:vertical}.form-message{margin-top:1rem;padding:0.75rem;border-radius:8px;display:none}.form-message.success{background-color:rgba(0,166,81,0.1);color:var(--growth-green);border:1px solid var(--growth-green);display:block}.form-message.error{background-color:rgba(220,53,69,0.1);color:#dc3545;border:1px solid #dc3545;display:block}.btn.btn-primary{background-color:var(--deep-blue);border:none;color:var(--white);padding:0.75rem 1.5rem;border-radius:8px;transition:all 0.3s ease;font-weight:600;align-self:flex-start}.btn.btn-primary:hover{background-color:var(--growth-green);color:var(--white);transform:translateY(-2px);box-shadow:0 0 10px rgba(0,166,81,0.4)}@media (max-width:991px){.contact-container{grid-template-columns:1fr}.contact-info,.contact-form{padding:2rem}}footer{background-color:var(--deep-blue);color:var(--white);padding:3rem 0 1.5rem;position:relative;font-family:Arial,sans-serif}footer::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23001a52" fill-opacity="0.3" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');background-size:cover;background-position:center}.footer-content{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-bottom:2rem;position:relative;z-index:1}.footer-logo{font-size:1.5rem;font-weight:700;margin-bottom:1rem}.footer-logo span{color:var(--growth-green)}.footer-about p{opacity:0.8;line-height:1.6}.footer-links h4,.footer-contact h4{font-size:1.25rem;margin-bottom:1.5rem;position:relative;padding-bottom:0.5rem;font-weight:600}.footer-links h4::after,.footer-contact h4::after{content:'';position:absolute;bottom:0;left:0;width:40px;height:2px;background-color:var(--growth-green)}.footer-links ul{list-style:none;padding:0;margin:0}.footer-links ul li{margin-bottom:0.75rem}.footer-links a{color:inherit;text-decoration:none;opacity:0.8;transition:var(--transition);display:inline-block}.footer-links a:hover{opacity:1;color:var(--growth-green);transform:translateX(3px)}.footer-contact p{display:flex;align-items:center;margin-bottom:1rem;opacity:0.9;font-size:0.95rem}.footer-contact i{margin-right:0.75rem;color:var(--growth-green);font-size:1.1rem}.social-icons{display:flex;gap:1rem;justify-content:center;margin-bottom:1.2rem;margin-top:0.5rem}.social-icons a{width:38px;height:38px;background-color:white;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--deep-blue);font-size:1rem;text-decoration:none;box-shadow:0 4px 10px rgba(0,0,0,0.3);transition:all 0.3s ease}.social-icons a:hover{background-color:var(--growth-green-dark);transform:translateY(-3px) scale(1.05);color:var(--white);box-shadow:0 6px 15px rgba(0,0,0,0.4)}.footer-bottom{display:flex;flex-direction:column;align-items:center;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,0.1);opacity:0.7;position:relative;z-index:1;font-size:0.9rem}.back-to-top{position:fixed;bottom:30px;right:30px;width:50px;height:50px;background-color:var(--growth-green);color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.2rem;box-shadow:var(--shadow-heavy);cursor:pointer;transition:var(--transition);opacity:0;visibility:hidden;z-index:999}.back-to-top.active{opacity:1;visibility:visible}.back-to-top:hover{background-color:var(--growth-green-dark);transform:translateY(-3px)}.loading{position:fixed;top:0;left:0;width:100%;height:100%;background-color:var(--white);display:flex;align-items:center;justify-content:center;z-index:9999;transition:opacity 0.5s ease,visibility 0.5s ease}.loading.hidden{opacity:0;visibility:hidden}.loader{width:50px;height:50px;border:5px solid var(--light-gray);border-top:5px solid var(--deep-blue);border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@media (max-width:992px){.about-grid,.global-content,.contact-container{grid-template-columns:1fr}.mission-vision{grid-template-columns:1fr}.footer-content{grid-template-columns:1fr 1fr}}@media (max-width:768px){.hamburger{display:block}.nav-menu{position:fixed;top:70px;right:-100%;width:80%;height:calc(100vh - 70px);background-color:var(--white);flex-direction:column;align-items:center;padding-top:2rem;transition:var(--transition);box-shadow:-5px 0 15px rgba(0,0,0,0.1);z-index:999}.nav-menu.active{right:0}.nav-menu li{margin:1rem 0}h1{font-size:2rem}.hero h1{font-size:2.2rem}.section{padding:3rem 0}.footer-content{grid-template-columns:1fr}.back-to-top{bottom:20px;right:20px;width:40px;height:40px;font-size:1rem}}@media (max-width:576px){.container{padding:0 1rem}.hero h1{font-size:1.8rem}.hero p{font-size:1rem}.service-card,.industry-card,.leader-card{margin-bottom:1.5rem}}

/* Premium Leadership Section (Balanced + Image Fix) */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin-top: 2rem;
}

.leader-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--medium-gray);
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.leader-img {
    height: 240px; /* Slightly increased to balance frame */
    background-size: cover;
    background-position: top center; /* Show full head */
    background-repeat: no-repeat;
    position: relative;
}

.leader-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.25));
    opacity: 0;
    transition: all 0.3s ease;
}

.leader-card:hover .leader-img::before {
    opacity: 1;
}

.leader-content {
    padding: 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.leader-content h3 {
    color: var(--deep-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.leader-title {
    color: var(--growth-green-dark);
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}

.leader-bio {
    color: var(--text-dark);
    font-size: 0.83rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
    flex-grow: 1;
}

.leader-social {
    display: flex;
    justify-content: flex-start;
}

.leader-social a {
    color: var(--deep-blue);
    font-size: 1.15rem;
    margin-right: 0.6rem;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    color: var(--growth-green);
    transform: translateY(-2px);
}

/* Responsive Adjustment */
@media (max-width: 1200px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}
