*{
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
color: #1c1841;
margin: 0;
padding: 0;
box-sizing: border-box;
}

html{
scroll-behavior: smooth;
}

header{
background-color: white;
width: 100%;
position: fixed;
z-index: 999;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 100px;
}

.logo{
text-decoration: none;
font-size: 1.8em;
font-weight: 700;
}

.navigation a{
text-decoration: none;
font-size: 1.1em;
font-weight: 500;
padding-left: 30px;
}

.navigation a:hover{
color: #601cfc;
}

section{
min-height: 100vh;
padding: 100px 100px;
}
header{
    background-color:#b8b8be;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 200px;
}
.logo{
    text-decoration: none;
    color: #392594;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8em;
}
.navigation a{
    color: #322796;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding-left: 30px;
}
.navigation a:hover{
  color: #4d12e0;
}
section{
    padding:100px 200px
}
.main {
width: 100%;
min-height: 100vh;
display: flex;
align-items: center;

background: linear-gradient(
135deg,
#020617,
#071a3d,
#0a254f
);
}
.main h2{
    color: #fffdfd;
    font-size: 1.4em;
    font-weight: 500;
}
.main h2 span {
    display: inline-block;
    margin-top: 10px;
    color: #ffffff;
    font-size: 3em;
    font-weight: 600;
}
.main h3 {
    color: #ffffff;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 30px;
}
.main-btn {
background-color: #4f8cff;
color: white;
text-decoration: none;
padding: 15px 35px;
border-radius: 15px;
font-size: 1.1rem;
font-weight: 600;
display: inline-block;
margin-top: 20px;
transition: all 0.3s ease;
}

.main-btn:hover {
background-color: #2d6cdf;
transform: scale(1.08);
}

.social-icons a {
color: white !important;
font-size: 1.8em;
padding-right: 30px;
transition: 0.3s ease;
}

.social-icons a {
color: white !important;
fill:white !important;
transform: scale(1.2);
}
.language{
display:flex;
justify-content:space-between;
align-items:center;
margin:12px 0;
}

.language span{
font-size:1rem;
font-weight:500;
}

.grade{
min-width:70px;
height:35px;
padding:0 12px;
border-radius:20px;
background:#6c63ff;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
font-size:0.85rem;
font-weight:600;
}
.title {
    display: flex;
    justify-content: center;
    color: #694f32;
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 30px;
}
.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.card {
    background-color: #ffffff;
    width: 21.25em;
    box-shadow: 0 5px 25px rgba(1 1 1/ 15%);
    badding: 25px;
    margin: 15px;
    transition: 0.7s ease;
}
.card:hover{ 
    transform: scale(1.1);
}
.icon{
    color: #694f32;
    font-size: 8em;
    text-align: center;
}
.info{
    text-align: center;
}
.info h3 {
    color: #694f32;
    font-size: 1.2em;
    font-weight: 700;
    margin: 10px;
}


:root {
--primary: #2563eb;
--primary-dark: #1e40af;
--text: #1f2937;
--muted: #6b7280;
--bg: #f8fafc;
--card-bg: #ffffff;
--shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
--radius: 12px;
--border: #e5e7eb;
}

.Certificates {
padding: 80px 0;
background-image: linear-gradient(to bottom,#f4f5f7 0%, #061f3f 100%) !important;
width: 100%;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.section-title {
font-size: 36px;
font-weight: 700;
text-align: center;
margin-bottom: 50px;
color: #54433a;
font-family: inherit;
}

.cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.card {
background: var(--card-bg);
border-radius: var(--radius);
box-shadow: var(--shadow);
overflow: hidden;
display: flex;
flex-direction: column;
height: 100%;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid var(--border);
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-img {
width: 100%;
height: 220px;
object-fit: contain;
background-color: #ffffff;
padding: 12px;
border-bottom: 1px solid #f1f5f9;
}

.card-content {
padding: 25px;
display: flex;
flex-direction: column;
gap: 10px;
flex-grow: 1;
}

.category {
display: inline-block;
font-size: 12px;
color: var(--primary);
background: #525151;
padding: 4px 12px;
border-radius: 20px;
font-weight: 600;
align-self: flex-start;
}

.card-title {
font-size: 18px;
font-weight: 700;
color: var(--text);
margin-top: 5px;
}

.card-desc {
font-size: 14px;
color: var(--muted);
line-height: 1.5;
}

@media (max-width: 992px) {
.cards {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
}

@media (max-width: 600px) {
.cards {
grid-template-columns: 1fr;
}
.section-title {
font-size: 28px;
}
}
.Certificates-section {
background: linear-gradient(to bottom, #f4f5f7 0%, #e2e5e9 100%);
padding: 60px 20px;
text-align: center;
}

.Certificates-section h2 {
color: #333333;
font-size: 2.5rem;
margin-bottom: 40px;
font-weight: bold;
}

section.Contact {
background-color: #ffffff !important;
padding: 100px 20px !important;
text-align: center !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;
width: 100% !important;
}

section.Contact .title {
color: #4d3a1e !important;
font-size: 2.8rem !important;
font-weight: 700 !important;
margin-bottom: 60px !important;
text-align: center !important;
width: 100% !important;
}

.contact-card-container {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
width: 100%;
}

.contact-card {
background-color: #ffffff !important;
border-radius: 16px;
padding: 50px 30px;
width: 320px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid #e2e8f0;
text-align: center !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
}

.contact-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
font-size: 3.5rem;
color: #063572 !important;
margin-bottom: 25px;
}

.contact-card h3 {
font-size: 1.5rem;
color: #1f2937 !important;
margin-bottom: 15px;
font-weight: 600;
}

.contact-card a {
color: #6b7280 !important;
text-decoration: none;
font-size: 1rem;
word-break: break-all;
transition: color 0.2s ease;
}

.contact-card a:hover {
color: #4a5c91 !important;
}

@media(max-width:1023px){
    header{
        padding: 12px 20px;
    }
    .navigation a{
        padding-left: 10px;
}
.title{
     font-size: 80px;
}
section{
    padding: 80px 20px;
}
.main-content h2{
    font-size: 1em;
}
.main-content h3{
    font-size: 1.6em;
}
.content
flex-direction: column;
align-items: center;

}
