body {
font-family: 'Poppins', sans-serif;
background-color: #fff;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 60px 0;
}
footer.footer .container {
    padding: 0;
}
header#myHeader {
    position: static;
}
.about-section {
background: url('../images/about-bnss.jpeg') no-repeat center center/cover;
height: 430px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
}

.about-section .overlay {
position: absolute;
top: 0; 
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 36, 71, 0.85) 0%, rgba(0, 92, 158, 0.8) 100%);
z-index: 1;
}

.about-section .content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 40px;
animation: fadeInUp 1s ease-out;
}

.about-section h4 {
font-size: 1.25rem;
color: #a6beea;
margin-bottom: 1rem;
letter-spacing: 3px;
text-transform: uppercase;
font-weight: 500;
}

.about-section h1 {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 6px;
line-height: 1.2;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-section h1 span {
display: inline-block;
}

.about-section .highlight {
color: #a6beea;
position: relative;
}

.about-section .highlight:after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 3px;
background: #a6beea;
transform: scaleX(0);
transform-origin: right;
transition: transform 0.5s ease;
}

.about-section h1:hover .highlight:after {
transform: scaleX(1);
transform-origin: left;
}

.about-section p {
font-size: 1.1rem;
line-height: 1.8;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 2rem;
}

.flight-icon {
font-size: 2rem;
margin: 0 10px;
color: #a6beea;
animation: float 3s ease-in-out infinite;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}

.btn-explore {
display: inline-block;
padding: 12px 30px;
background: transparent;
color: #fff;
border: 2px solid #a6beea;
border-radius: 30px;
font-size: 1rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
text-decoration: none;
margin-top: 20px;
}

.btn-explore:hover {
background: #a6beea;
color: #002447;
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 191, 255, 0.2);
}
/*About us*/
.section-header {
text-align: center;
margin-bottom: 40px;
}
.section-header h2,
.section-header h1 {
font-size: 36px;
font-weight: 700;
color: #000;
margin-bottom: 40px;
position: relative;
}
.section-header h2 span,
.section-header h1 span{
color: #0c44ac;   
}
.section-header h2:after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: linear-gradient(90deg, #0c44ac, #3a7bd5);
border-radius: 2px;
}
    
.section-header p {
color: #333;
max-width: 700px;
margin: 0 auto;
font-size: 18px;
}

.about-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}
    
.about-card {
background: #ffffff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
border: 1px solid #e0e0e0;
}
.about-card.image-card {
width: 40%;
}
.about-card.text-card {
width: calc(60% - 30px);
}
    
.image-card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
    
.text-card {
padding: 20px 30px;
}
    
.text-card h2 {
font-size: 24px;
font-weight: 600;
margin-bottom: 20px;
color: #0c44ac;
}
    
.text-card p {
margin-bottom: 20px;
color: #333;
font-size: 16px;
line-height: 28px;
}
    
.highlight-box {
background: #f7f7f7;
padding: 20px;
border-left: 4px solid #0c44ac;
margin: 25px 0;
border-radius: 0 4px 4px 0;
}
    
.stats-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin-top: 60px;
}
    
.stat-item {
text-align: center;
padding: 30px 20px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
border: 1px solid #e0e0e0;
}
    
.stat-number {
font-size: 25px;
font-weight: 700;
color: #0c44ac;
margin-bottom: 0;
}
    
.stat-label {
color: #333;
font-size: 16px;
}
    
@media (max-width: 900px) {
.about-grid {
grid-template-columns: 1fr;
}
      
.stats-container {
grid-template-columns: repeat(2, 1fr);
}
}
    
@media (max-width: 600px) {
.section-header h1 {
font-size: 28px;
}
      
.section-header p {
font-size: 16px;
}
      
.text-card {
padding: 30px;
}
      
.stats-container {
grid-template-columns: 1fr;
}
.about-card.text-card,
.about-card.image-card {
width: 100%;
}
}
/*Our Strengths*/
.strengths-section {
width: 100%;
padding: 0;
background-image: url(../images/prmbnrmg.png);
background-repeat: no-repeat;
background-size: cover;
background-color: #f9f9fe;
}

.strengths-container {
display: flex;
flex-wrap: wrap;
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.strengths-image {
flex: 1 1 40%;
min-width: 300px;
background: linear-gradient(135deg, #0c44ac, #002e6d);
display: flex;
justify-content: center;
align-items: center;
padding: 40px;
}

.strengths-image-content {
text-align: center;
color: white;
}

.strengths-image-content i {
font-size: 64px;
margin-bottom: 20px;
background: rgba(255, 255, 255, 0.15);
width: 120px;
height: 120px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
}

.strengths-image-content h3 {
font-size: 28px;
margin-bottom: 15px;
font-weight: 700;
}

.strengths-image-content p {
font-size: 18px;
line-height: 1.6;
opacity: 0.9;
max-width: 400px;
margin: 0 auto;
}

.strengths-content {
flex: 1 1 60%;
padding: 24px 40px;
}

.strengths-section .section-header {
margin-bottom: 25px;
position: relative;
padding-bottom: 10px;
}

.strengths-section .section-header::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 80px;
height: 4px;
background: linear-gradient(90deg, #0c44ac, #3a7bd5);
border-radius: 2px;
}

.strengths-section .section-headerIns h3 {
font-size: 36px;
font-weight: 700;
color: #111;
line-height: 1.3;
text-align: left;
}
.section-headerIns {
padding-bottom: 20px;
}
.strengths-section .section-headerIns h3 span {
color: #0c44ac;
position: relative;
}

.strengths-section .section-headerIns p {
color: #666;
font-size: 18px;
margin-top: 5px;
text-align: left;
line-height: 1.6;
}

.strengths-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 9px;
}

.strengths-list li {
padding: 10px 25px 10px 80px;
border-radius: 15px;
font-size: 15px;
line-height: 1.5;
position: relative;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid rgba(0, 0, 0, 0.05);
}

.strengths-list li:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.strengths-list li i {
position: absolute;
left: 25px;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
background: rgba(12, 68, 172, 0.1);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: #0c44ac;
font-size: 18px;
}

.strengths-list li.light {
background-color: #f8faff;
}

.strengths-list li.blue {
background-color: #e5f2ff;
}

.trengths-section .highlight {
font-weight: 600;
color: #0c44ac;
}

/* Responsive design */
@media (max-width: 900px) {
.strengths-container {
flex-direction: column;
}
      
.strengths-image {
padding: 40px 20px;
}
      
.strengths-content {
padding: 40px 25px;
}
      
.trengths-section .section-headerIns h2 {
font-size: 30px;
}
}
    
@media (max-width: 600px) {
.strengths-list li {
padding: 20px 20px 20px 70px;
}
      
.strengths-list li i {
left: 15px;
}
      
.strengths-image-content i {
width: 90px;
height: 90px;
font-size: 48px;
}
      
.strengths-image-content h3 {
font-size: 24px;
}
      
.strengths-image-content p {
font-size: 16px;
}
}
/* Hero Section with Full-Width Image */
.hero-section {
position: relative;
width: 100%;
overflow: hidden;
padding: 40px 0 109px 0;
}
.hero-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(rgba(12, 30, 58, 0.8), rgba(12, 30, 58, 0.9)), 
    url('https://images.unsplash.com/photo-1528543606781-2f6e6857f318?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') center/cover no-repeat;
z-index: 1;
}

.hero-content {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
text-align: center;
padding: 0 20px;
max-width: 1200px;
margin: 0 auto;
padding-bottom: 30px;
}

.hero-content .icon {
font-size: 60px;
color: #3373cf;
margin-bottom: 5px;
display: inline-block;
animation: pulse 3s infinite ease-in-out;
}

.hero-content h1 {
font-size: 36px;
font-weight: 800;
margin-bottom: 0;
line-height: 1.2;
color: white;
}

.hero-content h1 span {
background: linear-gradient(135deg, #3373cf, #b1d1ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
position: relative;
}

.hero-content p {
color: #c7d8ff;
font-size: 17px;
line-height: 1.6;
margin-top: 15px;
max-width: 800px;
}

.divider {
width: 100px;
height: 4px;
background: linear-gradient(135deg, #3373cf, #b1d1ff);
margin: 25px auto 4px auto;
border-radius: 2px;
}

/* Team Section */
.team-section {
width: 100%;
padding: 0 20px 80px 20px;
margin: 0 auto;
position: relative;
z-index: 10;
background: linear-gradient(#ebeff8 0%, #f8f9fc 100%);
}
.team-section .container {
padding: 0;
}

.section-intro {
text-align: center;
margin-bottom: 40px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.section-intro h2 {
font-family: 'Montserrat', sans-serif;
font-size: 42px;
font-weight: 800;
margin-bottom: 20px;
background: linear-gradient(135deg, #0c1e3a, #1a3b6d);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.section-intro p {
color: #555;
font-size: 18px;
line-height: 1.7;
}

/* Team members grid */
.team-members {
display: flex;
justify-content: center;
flex-wrap: wrap;
position: relative;
z-index: 2;
width: 100%;
justify-content: space-between;
gap: 10px;
}

.member-card {
perspective: 1500px;
width: 100%;
height: 310px;
margin: 20px 0;
}
/* Position nav arrows nicely */
.owl-nav {
position: absolute;
top: 50%;
width: 100%;
transform: translateY(-50%);
display: flex;
justify-content: space-between;
pointer-events: none;
z-index: 10;
}

/* Common arrow button styles */
.owl-nav button {
pointer-events: auto;
background: linear-gradient(135deg, #F44336, #3F51B5) !important;
color: #fff !important;
border: none;
padding: 12px 16px !important;
font-size: 20px !important;
border-radius: 50%;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
width: 30px;
}
.owl-nav button.disabled {
opacity: 0.2;
pointer-events: none;
}

/* Hover effect with glow */
.owl-nav button:hover {
background: linear-gradient(135deg, #ff9900, #ff6600) !important;
transform: scale(1.15);
box-shadow: 0 6px 15px rgba(255, 102, 0, 0.6);
}

/* Arrow symbol style */
.owl-nav button span {
font-size: 22px;
font-weight: bold;
line-height: 1;
}

.card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
border-radius: 25px;
}

.member-card:hover .card-inner {
transform: rotateY(180deg);
}

.card-front, .card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
border-radius: 25px;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.card-front {
background: white;
padding: 40px 25px;
border: 1px solid rgba(74, 163, 255, 0.15);
}

.card-back {
background: linear-gradient(135deg, #0c1e3a 0%, #1a3b6d 100%);
transform: rotateY(180deg);
padding: 0 15px;
height: 100%;
overflow: hidden;
overflow-y: auto;
padding-top: 0;
justify-content: start;
border-radius: 25px 0 0 25px;
}
.card-back::-webkit-scrollbar {width: 7px;}
.card-back::-webkit-scrollbar-track {background: #f1f1f1;}
.card-back::-webkit-scrollbar-thumb {background: #888;}
.card-back::-webkit-scrollbar-thumb:hover {background: #555;}

.member-photo {
min-width: 150px;
min-height: 150px;
max-width: 150px;
max-height: 150px;
border-radius: 50%;
overflow: hidden;
margin: 0 auto 25px;
border: 4px solid rgba(74, 163, 255, 0.3);
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
margin-top: 0;
}

.member-photo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.member-card h3 {
font-size: 24px;
font-weight: 700;
margin-bottom: 8px;
color: #0c1e3a;
line-height: 28px;
}

.role {
color: #3373cf;
font-size: 16px;
font-weight: 500;
margin-bottom: 0;
}

.member-bio {
color: #555;
font-size: 15px;
line-height: 1.7;
margin-bottom: 30px;
}

.social-links {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 20px;
}

.social-links a {
width: 45px;
height: 45px;
border-radius: 50%;
background: rgba(74, 163, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
color: #4aa3ff;
font-size: 18px;
transition: all 0.3s ease;
text-decoration: none;
}

.social-links a:hover {
background: #4aa3ff;
color: white;
transform: translateY(-5px);
}

.quote-icon {
position: absolute;
font-size: 100px;
color: rgba(74, 163, 255, 0.07);
top: 10px;
left: 20px;
transform: rotate(180deg);
}

.quote-icon.bottom {
top: auto;
left: auto;
bottom: 10px;
right: 20px;
transform: rotate(0deg);
}

.card-back h3,
.card-back .role,
.card-back .member-bio {
color: white;
}
.card-back h3 {
line-height: 24px;
margin-bottom: 0px;
margin-top: 20px;
}

.card-back .role {
color: #fff;
margin-bottom: 7px;
}

.card-back .member-bio {
color: #fff;
}

/* Animations */
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}

@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0); }
}

/* Responsive design */
@media (max-width: 1100px) {
.team-members {
gap: 30px;
}
      
.member-card {
width: 280px;
height: 380px;
}
}

@media (max-width: 900px) {
.hero-content h1 {
font-size: 42px;
}
      
.hero-content p {
font-size: 18px;
}
      
.section-intro h2 {
font-size: 36px;
}
      
.team-members {
gap: 25px;
}
      
.member-card {
width: 260px;
height: 360px;
}
}

@media (max-width: 768px) {
.hero-section {
height: 60vh;
}
      
.team-section {
padding: 60px 20px;
}
      
.hero-content h1 {
font-size: 36px;
}
      
.section-intro {
margin-bottom: 40px;
}
      
.member-card {
width: 100%;
max-width: 400px;
height: 380px;
}
}

@media (max-width: 480px) {
.hero-content h1 {
font-size: 32px;
}
      
.hero-content .icon {
font-size: 48px;
}
      
.section-intro h2 {
font-size: 30px;
}
}
/*Meet Our Directors*/
.bdrisMain {
background: linear-gradient(#f8f9fc 0%, #ebeff8 100%);
color: #333;
padding: 40px 0 10px 0;
}
.bdrisMain .container {
padding-bottom: 0;
}
.team-section .section-header h2:after,
.bdrisMain .section-header h2:after{
display: none;
}
.team-section .section-header h2,
body .bdrisMain .section-header h2{
margin-bottom: 10px;
font-size: 29px;
}

.board-directors {
width: 100%;
padding: 40px 30px 51px 30px;
position: relative;
background: rgba(255, 255, 255);
border-radius: 30px;
/* box-shadow: 0 15px 60px rgba(12, 30, 58, 0.08); */
overflow: hidden;
margin-top: -200px;
z-index: 3;
background: linear-gradient(0deg, #ecf0f9 0%, #ffffff 100%);
}


/* Decorative elements */
.decorative-element {
position: absolute;
z-index: 0;
opacity: 0.03;
}

.circle-1 {
width: 500px;
height: 500px;
border-radius: 50%;
border: 15px solid #0c44ac;
top: -150px;
right: -150px;
}

.circle-2 {
width: 300px;
height: 300px;
border-radius: 50%;
border: 10px solid #3a7bd5;
bottom: -100px;
left: -100px;
}

/* Header section */
.bdrisMain .section-header {
text-align: center;
margin-bottom: 40px;
position: relative;
z-index: 2;
}

.bdrisMain .section-header h2 {
font-weight: 600;
color: #0c1e3a;
position: relative;
display: inline-block;
margin-bottom: 40px;
}

.bdrisMain .section-header h2 span {
color: #0c44ac;
position: relative;
}

.strengths-section span.highlight {
font-weight: 600;
color: #2764c4;
}

/* Directors Grid */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
    width: 770px;
    margin: 0 auto;
}

.director-card {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
display: flex;
flex-direction: column;
height: 100%;
transform: translateY(0);
}

.director-card:hover {
transform: translateY(-15px);
box-shadow: 0 20px 50px rgba(12, 68, 172, 0.15);
}

.photo-container {
position: relative;
overflow: hidden;
height: 350px;
}

.director-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s ease;
}

.director-card:hover img {
transform: scale(1.05);
}

.overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 100%;
background: linear-gradient(to top, rgba(12, 30, 58, 0.9) 30%, transparent 70%);
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 30px;
opacity: 1;
transition: opacity 0.4s ease;
}

.director-card .role {
font-size: 14px;
color: white;
background: #3373cf;
display: inline-block;
padding: 6px 18px;
border-radius: 30px;
margin-bottom: 15px;
font-weight: 500;
letter-spacing: 0.5px;
align-self: flex-start;
}

.director-card h3 {
font-size: 26px;
color: white;
margin-bottom: 5px;
font-weight: 600;
}

.info {
padding: 30px;
display: flex;
flex-direction: column;
flex-grow: 1;
}

.director-card p {
font-size: 16px;
line-height: 1.7;
margin-bottom: 5px;
color: #555;
flex-grow: 1;
}

.social-links {
display: flex;
gap: 15px;
margin-bottom: 20px;
}

.social-links a {
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(12, 68, 172, 0.1);
display: flex;
align-items: center;
justify-content: center;
color: #0c44ac;
font-size: 16px;
transition: all 0.3s ease;
text-decoration: none;
}

.social-links a:hover {
background: #0c44ac;
color: white;
transform: translateY(-3px);
}

.read-more {
display: inline-flex;
align-items: center;
text-decoration: none;
color: #0c44ac;
font-weight: 600;
transition: all 0.3s ease;
padding: 0 0;
position: relative;
align-self: flex-start;
justify-content: center;
margin: 0 auto;
margin-left: 5px;
}

.read-more:after {
content: '';
position: absolute;
bottom: 2px;
left: 0;
width: 100%;
height: 1px;
background: #0c44ac;
transform: scaleX(0);
transform-origin: right;
transition: transform 0.3s ease;
}

.read-more:after {
transform: scaleX(1);
transform-origin: left;
}
.read-more:hover:after {
transform: scaleX(1);
transform-origin: left;
background: red;
}

.read-more i {
margin-left: 10px;
font-size: 14px;
transition: transform 0.3s ease;
}

.read-more:hover i {
transform: translateX(5px);
}

/* Animation for cards */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Responsive design */
@media (max-width: 1200px) {
.directors-grid {
gap: 30px;
}
}

@media (max-width: 992px) {
.section-header h2 {
font-size: 42px;
}
      
.section-header p {
font-size: 18px;
}
      
.photo-container {
height: 300px;
}
}

@media (max-width: 768px) {
.board-directors {
padding: 60px 30px;
}
      
.section-header {
margin-bottom: 50px;
}
      
.section-header h2 {
font-size: 36px;
}

.directors-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 100%;
    margin: 0 auto;
    gap: 20px;
    width: 100%;
}
}
@media (max-width: 554px) {
    .photo-container {
        height: 510px;
    }
}

@media (max-width: 480px) {
.board-directors {
padding: 50px 20px;
}
      
.section-header h2 {
font-size: 32px;
}
      
.section-header h2:after {
width: 80px;
}
      
.photo-container {
height: 280px;
}
      
.info {
padding: 25px;
}
}
.journeySec img {
width: 100%;
}
.journeySec {
border-top: 1px solid #e6ecf8;
}
.journeySec .section-header {
margin-bottom: 0;
}
/*Company Logo*/
.companLogos {
position: relative;
padding: 58px 50px 70px 50px;
text-align: center;
background: linear-gradient(to bottom, #ffffff 0%, #f0f4ff 100%);
max-width: 100%;
border-top: 1px solid #e6ecf8;
}    
        
        
.companLogos .company-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 8px;
}
        
.companLogos .company-card {
position: relative;
height: 200px;
perspective: 1000px;
border-radius: 16px;
overflow: hidden;
}
        
.companLogos .company-card-inner {
position: relative;
width: 100%;
height: 100%;
transition: transform 0.8s;
transform-style: preserve-3d;
}
        
.companLogos .company-card:hover .company-card-inner {
transform: rotateY(180deg);
}
        
.companLogos .company-card-front, .company-card-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
border-radius: 16px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
        
.companLogos .company-card-front {
background: white;
border: 1px solid rgba(226, 232, 240, 0.8);
}
        
.companLogos .company-card-back {
background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
color: white;
transform: rotateY(180deg);
}
        
.companLogos .company-logo {
height: 70px;
margin-bottom: 0;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
padding: 0 20px;
}
        
.companLogos .company-card-front .company-logo img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
filter: grayscale(30%);
opacity: 0.9;
transition: all 0.3s ease;
}
        
.companLogos .company-card:hover .company-card-front .company-logo img {
filter: grayscale(0);
opacity: 1;
}
        
.companLogos .company-card-back .company-logo img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
background: #fff;
padding: 5px 10px;
border-radius: 11px;
}
        
.companLogos .company-name {
font-weight: 600;
font-size: 17px;
text-align: center;
margin-bottom: 0;
}
        
.company-card-front .company-name {
color: #1e293b;
}
        
.company-card-back .company-name {
color: white;
margin-top: 10px;
}
        
.companLogos .company-location {
font-size: 0.8rem;
color: #64748b;
font-weight: 400;
}
        
.company-card-back .company-location {
color: rgba(255, 255, 255, 0.8);
}
        
.companLogos .company-desc {
font-size: 0.75rem;
margin-top: 5px;
opacity: 0.9;
line-height: 1.5;
}
        
@media (max-width: 768px) {
.companLogos {
padding: 70px 20px;
}
            
.companLogos .company-grid {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
}
            
.companLogos .company-card {
height: 180px;
}
}
/*World Map*/
.woldMpa .map-container {
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
overflow: hidden;
display: flex;
flex-wrap: wrap;
margin-bottom: 40px;
}
        
.woldMpa .map-content {
flex: 1;
min-width: 300px;
padding: 30px;
position: relative;
overflow: hidden;
}
        
.woldMpa .map-visualization {
position: relative;
height: 500px;
background: #f8fafc;
border-radius: 15px;
overflow: hidden;
box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
display: flex;
align-items: center;
justify-content: center;
}
        
.woldMpa .world-map {
width: 100%;
height: 100%;
object-fit: contain;
}
        
.woldMpa .dot {
position: absolute;
width: 24px;
height: 24px;
border-radius: 50%;
/*transform: translate(-50%, -50%);*/
cursor: pointer;
transition: all 0.3s ease;
z-index: 10;
box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
animation: pulse 2s infinite;
}
        
.woldMpa .dot:hover {
box-shadow: 0 0 15px #000000;
z-index: 20;
animation: none;
}
        
.woldMpa .dot:after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
border-radius: 50%;
background: #000000;
opacity: 0.3;
animation: ripple 2s infinite;
}
        
.woldMpa .dot-label {
position: absolute;
background: rgba(0, 0, 0, 0.8);
color: white;
padding: 6px 12px;
border-radius: 20px;
font-size: 14px;
white-space: nowrap;
opacity: 0;
transform: translate(-50%, -20px);
transition: all 0.3s ease;
pointer-events: none;
z-index: 30;
}
        
.woldMpa .dot:hover .dot-label {
opacity: 1;
transform: translate(-50%, -40px);
}
        
.woldMpa .dot.australia { 
top: 75%; 
left: 80%; 
background: #0c44ac;
color: #ff3b00;
}
.woldMpa .dot.newzealand { 
top: 78%; 
left: 85%; 
background: #00ff7c;
color: #00bfff;
}
.woldMpa .dot.thailand { 
top: 45%; 
left: 65%; 
background: #3d6b2f;
color: #3d6b2f;
}
.dot.india { 
top: 40%; 
left: 58%; 
background: #FF7722;
color: #1d4d7b;
}
        
.woldMpa .legend-container {
flex: 0 0 300px;
padding: 30px;
background: #f9fafb;
border-left: 1px solid #e5e7eb;
}
        
.woldMpa .legend-title {
font-size: 22px;
font-weight: 600;
margin-bottom: 25px;
color: #1e293b;
display: flex;
align-items: center;
}
        
.woldMpa .legend-title i {
margin-right: 10px;
color: #3b82f6;
}
        
.legend-items {
display: grid;
grid-template-columns: 1fr;
gap: 15px;
}
        
.woldMpa .legend-item {
display: flex;
align-items: center;
padding: 12px 15px;
background: white;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid transparent;
}
        
.woldMpa .legend-item:hover {
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
border-color: #e5e7eb;
}
        
.woldMpa .legend-color {
width: 24px;
height: 24px;
border-radius: 50%;
margin-right: 15px;
flex-shrink: 0;
}
        
.woldMpa .legend-text {
font-weight: 500;
color: #1e293b;
}
.woldMpa {
background: linear-gradient(180deg, #f1f4ff 0%, #ffffff 100%);
}
.woldMpa .container {
padding-top: 0;
padding-bottom: 40px;
}       
        
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
}
70% {
box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
}
        
@keyframes ripple {
0% {
width: 100%;
height: 100%;
opacity: 0.3;
}
100% {
width: 150%;
height: 150%;
opacity: 0;
}
}
        
@media (max-width: 768px) {
.woldMpa .map-container {
flex-direction: column;
}
            
.woldMpa .legend-container {
border-left: none;
border-top: 1px solid #e5e7eb;
}            
            
.woldMpa .map-visualization {
height: 400px;
}
}
.read-more-content {
display: none;
}
.trops ul{margin: 20px 0 20px 0; color: #333;}
.trops ul li {
    margin-bottom: 20px;
    list-style: none;
    display: flex;
    align-items: self-start;
}
.trops ul li img {
    height: 27px;
    margin-right: 9px;
}
@media (max-width: 767px) {
.about-section {height: auto;}
.about-section .content {padding: 40px 15px;}
.about-section h1 {
font-size: 39px;
}
        

}