/* ==========================================================
   1. RESET
========================================================== */

/* ==========================================================
   2. ROOT VARIABLES
========================================================== */
:root{
    /*colors*/
    --primary:#0B2C78;

    --gold:#C9A227;

    --text:#374151;

    --white:#ffffff;

    --max-width:1400px;

     /*typography*/
    --font-title: 'Golos Text', serif;
    --font-heading:'Playfair Display', serif;
    --font-body:'Inter', sans-serif;

    /*font sizes*/
    --fs-display: 4rem;
    --fs-title: 1.4rem;
    --fs-subtitle: 1.3rem;
    --fs-body: 1.1rem;
    
    /*transitions*/
    --transition: all 0.3s ease;


    --max-width: 1400px;
}
/* ==========================================================
   3. GLOBAL STYLES
========================================================== */

/* ==========================================================
   4. TYPOGRAPHY
========================================================== */

/* ==========================================================
   5. HEADER & LOGO
========================================================== */
.logo {
    width:110px;
    margin:40px auto 15px auto;
    display:flex;
    justify-content:center;
    align-items:center;
}
.logo img{
    width:100%;
    height:auto;
    display:block;
}
/* ==========================================================
   6. NAVIGATION
========================================================== */
.navbar {
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;

}

.nav-links {
    list-style-type: none;
    gap: 45px;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li a {
    display: block;
    box-shadow:none;
    color: var(--primary);
    font-family: var(--font-body);
    padding: 14px 18px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.nav-links li a:hover {
    text-decoration: underline var(--gold) 4px;
    transition: var(--transition);
}

.nav-links li a.active {
    border-bottom:3px solid var(--gold);
}
/* ==========================================================
   7. HERO SECTION
========================================================== */

.container {
    width:100%;
    max-width: var(--max-width);
    margin:0 auto;
    padding:0 35px;
    display: flex;
    gap: 50px;
}

.intro {
    width: 100%;
    max-width:820px;
    margin: 15px 25px 15px 50px;
    justify-content:center;
}

.heropic {
    width: 100%;
    max-width: 720px;
    margin: 15px auto;
    display: flex;
    justify-content: center;
}

.heropic img {
    width: 100%;
    max-width:100%;
    height: auto;
    display: block;            
}

.hero {
    text-align: center;
    font-optical-sizing: auto;
    margin: 45px 0 45px 0;
}

.hero-title {
    color: var(--primary);
    font-family: var(--font-title);
    font-size: var(--fs-display);
    line-height: 1.1; 
    font-weight: 800;
}

.hero-subtitle {
    color: var(--primary);
    font-family: var(--font-body);
    font-size: var(--fs-title);
    font-weight: 600;
}

.hero-lang {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: var(--fs-title);
    font-weight: 600;
}

.btxt {
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--fs-subtitle);
    text-align: left;
    max-width:700px;
    margin:0 auto;
    line-height:1.6;
    font-weight:400;
}
/* ==========================================================
   8. BUTTONS
========================================================== */
.btncont {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 25px 0 20px 0;
}

.btn {
    width: auto;
    height: auto;
    font-weight: 400;
    padding: 14px 30px; /* Top/Bottom Left/Right spacing */
    border: none; /* Removes default browser border */
    border-radius: 50px; /* Fully rounded capsule pill shape */
    cursor: pointer; /* Changes mouse pointer to a hand icon */
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4); /* Glow effect shadow */
    transition: var(--transition); /* Smooth transition for animations */
    letter-spacing: 0.8px;
    outline: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: var(--fs-body);
}
.btn-primary {
    background-color: #080BC8;
}

.btn-secondary {
    background-color: var(--gold);
}

.btn:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
}

.btn:action, .btn:active {
    transform: translateY(1px); /* Pushes down slightly to simulate a physical press */
    box-shadow: 0 3px 10px rgba(168, 85, 247, 0.4); /* Reduced shadow */
}
.ubtngreet {
    color: var(--gold);
    margin-top: -10px;
    font-family: var(--font-body);
    font-size: var(--fs-title);
    text-align: center;
    font-weight: 600;
}

 hr {
    width: 98%;
    margin: 0 0 -15px 0;
    border: none;
    height: 2px;
    background-color: #C9A227;
}

/* ==========================================================
   9. MISSION
========================================================== */
.mpara {
    font-family: var(--font-body);
    font-size: var(--fs-subtitle);
    color: var(--text);
    max-width:1200px;
    margin:30px auto;
    line-height:1.6;
    font-weight:400;
}
/* ==========================================================
   10. FOOTER
========================================================== */

/* ==========================================================
   11. RESPONSIVE DESIGN
========================================================== */

/*tablets*/
@media (max-width:992px){

.container{
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 0 20px;
}

.intro{
    max-width: 100%;
    margin: 0;
}

.heropic{
    max-width: 600px;
    margin: 0 auto;
}

}

/*mobiles*/
@media (max-width:768px){

.container{
    padding:0 15px;
    gap:25px;
}

.logo{
    margin-bottom:15px;
}

.hero-title{
    font-size:2.5rem;
}

.hero-subtitle{
    font-size:1.1rem;
}

.nav-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:6px;
}
.nav-links li a{
    padding:10px 12px;
    font-size:16px;
}

}

/*mobiles*/
@media (max-width:576px){

    .container{
    padding:0 10px;
    gap:20px;
}

.hero-title{
    font-size:2rem;
    line-height:1.2;
}

.hero-subtitle{
    font-size:1rem;
}

.intro p{
    font-size:1rem;
    line-height:1.7;
}

.heropic{
    max-width:100%;
}

.nav-links{
    gap:8px;
}

}