body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
}

/* Header Banner */
.site-header img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
nav {
    background: #111B4E;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    padding: 15px 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li:hover {
    background: #555;
}

/* Marquee */
.marquee-container {
    width: 100%;
    background: #111B4E;
    overflow: hidden;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
}

.marquee-text {
    display: inline-block; /* Added for better animation support */
    white-space: nowrap;
    color: white;
    font-weight: bold;
    animation: marquee 50s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Contact us*/
section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  flex: 1; /* Pushes footer down */
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Prevents image stretching */
  border-radius: 5px;
}

/* Section Styling */
#videos {
    padding: 60px 20px;
    background: #f5f7fb;
    text-align: center;
}

#videos h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #111B4E;
    position: relative;
}

#videos h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #ffcc00;
    display: block;
    margin: 10px auto 0;
}

/* Video Container */


.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Video Box */
.video-box {
    width: 350px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.video-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Video iframe */
.video-box iframe {
    width: 100%;
    height: 200px;
    border: none;
}

/* Responsive */
@media(max-width:768px) {
    .video-box {
        width: 90%;
    }
}

/* FOUNDERS SECTION */
#founders {
    padding: 60px 20px;
    background: #f4f6f9;
}

#founders h2 {
    text-align: center;
    color: #001f3f;
    margin-bottom: 30px;
    position: relative;
}

#founders h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: gold;
    display: block;
    margin: 10px auto 0;
}

/* GRID */
.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* CARD */
.founder-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.founder-card:hover {
    transform: translateY(-8px);
}

.founder-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.founder-card h4 {
    margin: 15px 10px 5px;
    color: #111B4E;
    font-size: 1.2rem;
}

.founder-card .role {
    margin-bottom: 15px;
    color: #777;
    font-weight: bold;
    font-size: 0.9rem;
}

/* TRUST CONTENT CONTAINER */
.trust-container {
    max-width: 1000px;
    margin: 50px auto;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.trust-container h1 {
    text-align: center;
    color: #001f3f;
    margin-bottom: 20px;
}

.trust-container h3 {
    text-align: left;
    border-left: 5px solid gold;
    padding-left: 10px;
    color: #111B4E;
    margin-top: 25px;
}

.trust-container ul {
    padding-left: 20px;
}

.trust-container li {
    margin-bottom: 10px;
}

/* Footer Layout */
footer {
    background: #111B4E;
    color: white;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Social Media Icons Styling */
.footer-right a {
    color: white;
    font-size: 20px;
    margin-left: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-right a:hover {
    color: #ffcc00; /* Gold color on hover */
    transform: scale(1.2);
    display: inline-block;
}

/* Responsive Footer for Mobile */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-right {
        margin-top: 15px;
    }
    .footer-right a {
        margin: 0 10px;
    }
}