/* 
Theme Name: NAQAA
Theme URI: https://naqaa.gm/
Author: STEPS KEITA
Author URI: https://www.linkedin.com/in/stepskeita/
Description:    By developing a robust framework for accreditation and quality
assurance, NAQAA contributes significantly to the social and
economic development of The Gambia, ensuring that the workforce is
well-prepared and that educational qualifications meet global
standards.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: NAQAA 
*/

@import "./css/font.css";
:root {
  --primary: #1350a0;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  overflow-x: hidden;
  background: #fff;
}

/* NAVBAR */
/* nav */

.menu {
  transition: transform 0.3s ease-in-out;
}
.menu-hidden {
  transform: scale(0);
}
.menu-visible {
  transform: scale(1);
}

/* Global styles for custom scrollbar */
*::-webkit-scrollbar {
  width: 5px;
  height: 5px; /* Also style horizontal scrollbar */
}

*::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #1f5fb3;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #f1f1f1;
}

.btnStyle {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: all 0.3s ease;
}

.btnStyle:hover {
  border-top-right-radius: 20px;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* HOME PAGE */

.showcase {
  height: calc(90vh - 200px);
}

.docusaryPages {
  height: calc(100vh - 75px - 35px);
}

/* ABOUT PAGE */
.aboutPageDetails {
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 25% 50%, 0% 0%);
}

.aboutPageDirectorates {
  background: url(./assets/images/Training-of-Qulity-Assurance-personnel-for-tertiary-institutions-e1575466131640.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* TIMELINE */
.clip-arrow {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* END TIMELINE */

@media (max-width: 900px) {
  .showcase {
    height: 65vh;
  }
}
