/* ============================= */
/*        CUSTOM URDU FONT       */
/* ============================= */

@font-face {
    font-family: 'JameelNoori';
    src: url('./fonts/JameelNooriNastaleeq.ttf') format('truetype');
}

/* ============================= */
/*        GLOBAL RESET           */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

/* ============================= */
/*        CONTAINER              */
/* ============================= */

.container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

/* ============================= */
/*        HEADER / NAVBAR        */
/* ============================= */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header {
    background: #0d3b66;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    text-align: right;
}

nav ul li {
    display: inline-block;
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f4a261;
}

/* ============================= */
/*        HERO SECTION           */
/* ============================= */

.page-hero {
    background: linear-gradient(rgba(13,59,102,0.7), rgba(13,59,102,0.7)),
    url("img/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 0;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 36px;
}

/* ============================= */
/*        SECTION                */
/* ============================= */

.section {
    padding: 60px 0;
}

.section h1 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #0d3b66;
}

.section h2 {
    margin-bottom: 15px;
    color: #1d3557;
}

.section p {
    margin-bottom: 15px;
}

/* ============================= */
/*        CARD DESIGN            */
/* ============================= */

.card {
    background: white;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* ============================= */
/*        URDU SECTION           */
/* ============================= */

.urdu {
    direction: rtl;
    text-align: right;
    font-family: 'JameelNoori', serif;
    font-size: 22px;
    line-height: 2.2;
}

/* ============================= */
/*        BUTTON                 */
/* ============================= */

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* ============================= */
/*        FOOTER                 */
/* ============================= */

footer {
    background: #0d3b66;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    color: #f4a261;
}

/* ============================= */
/*        WHATSAPP BUTTON        */
/* ============================= */

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.3);
    z-index: 100;
    transition: 0.3s;
}

.whatsapp-float img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Language Toggle Button Styling */
.language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-toggle button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 4px;
}

.language-toggle button.active {
    background: #f4a261;
    color: #000;
}
.lang-ur {
    display: none;
}

.language-toggle button.active {
    background: #f4a261;
    color: black;
}
.lang-item button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 5px 10px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 4px;
}

.lang-item button.active {
    background: #f4a261;
    color: black;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-size: 22px;
    font-weight: bold;
    color: white;
    line-height: 1.2;
}

.tagline {
    font-size: 13px;
    color: #f4a261;
    margin-top: 2px;
}
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form label {
    font-weight: bold;
}