/*-------------------------------------------------------------------------------------
Theme Name:     Edumart
Theme URI:      https://bradforduniversitycollege.com
Author:         protechtheme
Author URI:     https://protechtheme.com
Description:    Education / University Theme for Bradford University College
Version:        1.0
-------------------------------------------------------------------------------------*/

/**
 * Main stylesheet for Edumart Theme
 * 
 * Sections:
 * 01. General Style
 * 02. Header
 * 03. Navigation
 * 04. Home Sections
 * 05. Footer
 * ... (rest of your sections)
 */

/* ================================================== */
/* 01. General Style */
/* ================================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

/* Custom Font: TeX Gyre Adventor Bold (fallback for headings) */
@font-face {
    font-family: 'texgyreadventorbold';
    src: url('../fonts/texgyreadventor-bold.woff2') format('woff2'),
         url('../fonts/texgyreadventor-bold.woff') format('woff'),
         url('../fonts/texgyreadventor-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #93a0a7;
    line-height: 26px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
    font-family: 'texgyreadventorbold', 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #24353b;
    font-weight: 700;
}

h1 { font-size: 46px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 18px; }
h6 { font-size: 14px; }

p { margin: 0 0 15px 0; }
a {
    text-decoration: none !important;
    transition: all 0.3s ease;
}
a:hover { outline: none; }

/* Page Loader */
#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    background: #fff;
    top: 0;
    left: 0;
}

/* ... (I kept the rest of your loader animation as-is, but you can remove it if unused) */

/* ================================================== */
/* 02. Header & 03. Navigation (your original code cleaned) */
/* ================================================== */

.header-top { background: #211d1e; }
/* ... your existing header, navbar, etc. rules ... */

/* Keep all your other sections as they were, but ensure every { is properly closed */

/* Example of one fixed rule that had a missing brace earlier */
.banner-outer .slide4 .content p,
.banner-outer .slide5 .content p {
    margin: 0 auto;
    color: #fff;
}

/* ================================================== */
/* 23. Responsive Style (kept your media queries) */
/* ================================================== */

@media (max-width: 767px) {
    /* your mobile styles */
}

/* Add this at the very end if needed */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}