* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #0a3d91;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #0a3d91;
    font-weight: bold;
}
a:link{

    color: #0a3d91;
}

/* HERO */
@media(max-width: 950px)
{

    .hero {
    background: url('mobile_banner.jpg') no-repeat center/cover;
    height: 500px;
    position: relative;
}
}
@media(min-width: 950px)
{
.hero {
    background: url('banner1.jpg') no-repeat center/cover;
    height: 500px;
    position: relative;
    background-position: center;
}
}

.overlay {
    background: rgba(255,255,255,0);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 42px;
    color: #0a3d91;
}

.hero-text p {
    margin-top: 10px;
    font-size: 18px;
}

/* SERVICES */

.services {
    padding: 20px 0;
    text-align: center;
}
@media(max-width: 950px)
{
    .services {
    padding: 5px 0;
    text-align: center;
}
}
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.card {
    padding: 25px;
    border-radius: 10px;
    background: #f5f9ff;
}

/* TEAM */
.team {
    padding: 60px 0;
    text-align: center;
}

.team-card img {
    width: 100px;
    border-radius: 50%;
}

/* PROJECTS */
.projects {
    /* background: #f8fbff; */
    padding: 60px 0;
    text-align: center;
}

.project-card {
    background: white;
    margin: 15px auto;
    padding: 20px;
    max-width: 600px;
    border-radius: 10px;
}

/* SOCIAL */
.social {
    padding: 40px 0;
    text-align: center;
}

.social-links a {
    margin: 0 10px;
    color: #0a3d91;
    font-weight: bold;
}

/* FOOTER */
footer {
    background: #0a3d91;
    color: white;
    text-align: center;
    padding: 15px;
}


/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 32px;
    color: #0a3d91;
    margin-bottom: 40px;
    font-weight: 700;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* FANCY CARD */
.card.fancy {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid rgba(10, 61, 145, 0.1);
    min-height: 220px;
}

/* ICON */
.card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TEXT */
.card h3 {
    color: #0a3d91;
    margin-bottom: 10px;
    font-size: 20px;
}

.card p {
    font-size: 14px;
    color: #555;
}

/* GRADIENT BORDER EFFECT */
.card.fancy::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(120deg, #0a3d91, #3fa9f5);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* HOVER EFFECT */
.card.fancy:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(10, 61, 145, 0.15);
}

/* ICON ANIMATION */
.card.fancy:hover .icon {
    transform: scale(1.2) rotate(5deg);
    transition: 0.3s;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

/* TEAM CARDS - Interactive */
.team-card.fancy {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid rgba(10, 61, 145, 0.1);
    min-height: 260px;
}

/* GRADIENT BORDER */
.team-card.fancy::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(120deg, #0a3d91, #3fa9f5);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* PROFILE IMAGE */
.team-card .avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s;
}

.team-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAME & TITLE */
.team-card h3 {
    font-size: 20px;
    color: #0a3d91;
    margin-bottom: 6px;
}

.team-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT */
.team-card.fancy:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(10, 61, 145, 0.15);
}

.team-card.fancy:hover .avatar {
    transform: scale(1.1);
}

/* GRID RESPONSIVE */
@media(max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

/* PROJECT GRID */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* PROJECT CARD */
.project-card.fancy {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    position: relative;
    transition: 0.35s;
    overflow: hidden;
    border: 1px solid rgba(10, 61, 145, 0.1);
}

/* ICON */
.project-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

/* TITLE */
.project-card h3 {
    color: #0a3d91;
    margin-bottom: 10px;
}

/* TAG */
.tag {
    display: inline-block;
    margin-top: 15px;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #e6f0ff;
    color: #0a3d91;
    font-weight: 600;
}

/* BORDER EFFECT */
.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(120deg, #0a3d91, #3fa9f5);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* HOVER */
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(10, 61, 145, 0.15);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

/* SOCIAL SECTION */
.social-section {
    padding: 60px 0;
    background: #f8fbff;
}

/* GRID */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.social-card {
    padding: 30px;
    border-radius: 16px;
    color: white;
    transition: 0.3s;
}

/* COLORS */
.fb {
    background: linear-gradient(135deg, #1877f2, #0a3d91);
}

.yt {
    background: linear-gradient(135deg, #ff0000, #c4302b);
}

.tt {
    background: linear-gradient(135deg, #000000, #333);
}

/* TEXT */
.social-card h3 {
    margin-bottom: 10px;
}

.social-card a {
    display: inline-block;
    margin-top: 15px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

/* HOVER */
.social-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}
/* TEAM GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

/* ROUND CARD */
.team-round {
    transition: 0.35s;
}

/* IMAGE WRAPPER */
.team-img {
    width: 160px;
    height: 160px;
    margin: auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #0a3d91, #3fa9f5);
    transition: 0.4s;
}

/* IMAGE */
.team-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    padding: 4px;
}

/* NAME */
.team-round h3 {
    margin-top: 15px;
    color: #0a3d91;
    font-size: 18px;
}

/* ROLE */
.team-round p {
    font-size: 14px;
    color: #666;
}

/* HOVER EFFECT */
.team-round:hover {
    transform: translateY(-10px);
}

.team-round:hover .team-img {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(10, 61, 145, 0.3);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
/* RESPONSIVE */
@media(max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 28px;
    }
}