
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f7fb;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

/* NAV */
nav {
    display: flex;
    align-items: center;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

.btn-primary {
    background: #1e66d0;
    color: #fff;
    padding: 8px 14px;
    border-radius: 5px;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    background: transparent;
    border: 0;
    color: #333;
}

/* MOBILE NAV */
@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav a {
        padding: 15px;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: center;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background: linear-gradient(135deg, #0f3c88, #1e66d0);
    color: white;
}

.hero img {
    width: 40%;
}

.hero-text {
    width: 55%;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-buttons a {
    margin-right: 10px;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-white {
    background: #fff;
    color: #1e66d0;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

/* MOBILE HERO */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero img {
        width: 70%;
        margin-top: 20px;
    }

    .hero-text {
        width: 100%;
    }
}

/* SECTIONS */
.section {
    padding: 40px 20px;
    text-align: center;
}

.services, .programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

/* HIGHLIGHT */
.highlight {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.highlight-box {
    flex: 1;
    background: #eaf1ff;
    padding: 20px;
    border-radius: 8px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .highlight {
        flex-direction: column;
    }
}

/* CONTACT */
.contact form {
    max-width: 500px;
    margin: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
}

.contact button {
    width: 100%;
    padding: 12px;
    background: #1e66d0;
    color: #fff;
    border: none;
}

/* FOOTER */
footer {
    background: #0f3c88;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* PARTNERS */
.partners {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.partner-card {
    padding: 15px;
    border-radius: 8px;
    background: #f4f7fb;
}

.partner-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* TEAM */
.team {
    padding: 40px 20px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.team-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.team-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-card h4 {
    margin-bottom: 5px;
}

.team-card p {
    font-size: 14px;
    color: #666;
}

/* ABOUT SECTION */
.about {
    padding: 70px 20px;
    background: #fff;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f3c88;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

/* BULLET POINTS */
.about-points {
    margin-top: 25px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.point .icon {
    color: #1e66d0;
    font-size: 18px;
    margin-top: 2px;
    min-width: 20px;
}

.point span {
    line-height: 1.5;
    color: #333;
}

/* IMAGE */
.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 75%;
    max-width: 350px;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: left;
    }

    .about-image img {
        width: 60%;
        margin-top: 20px;
    }
}

/* === SkillMaitry AI Theme Enhancements (Add-on CSS) === */

/* Section background upgrade */
.team-section {
  background: linear-gradient(135deg, #0f3c88, #1e66d0);
  color: #e2e8f0;
  margin: 20px 20px 20px 20px;
  padding: 10px 10px 10px 10px;
  border-radius: 10px;
}

/* Heading gradient text */
.team-section h2,
.team-section > p {
  background: linear-gradient(90deg, #38bdf8, #6366f1);
 /*  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
   text-align:center;
}

/* Upgrade existing card */
.team-card {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.team-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.4);
}

/* Top gradient line */
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
}

/* Glow overlay on hover */
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(99,102,241,0.15), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.team-card:hover::after {
  opacity: 1;
}

/* Icon styling (if using icons inside cards) */
.team-card i {
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Experience text highlight */
.team-card .exp {
  color: #38bdf8;
  font-weight: 600;
}

/* Subtext refinement */
.team-card p {
  color: #94a3b8;
}
