/*
Theme Name:websoftitnepal
Theme URI: https://websoftitnepal.com
Version: 10
Author: websoftitnepal
Author URI: https://www.websoftitnepal.com
Slug: websoftitnepal
Description: This Theme is of portal.
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Akshar:wght@300..700&display=swap');

@font-face {
  font-family: 'Special Gothic Condensed One';
  src: url('./assets/fonts/SpecialGothicCondensedOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Anek Devanagari';
  src: url('./assets/fonts/AnekDevanagari-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: bolder;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope';
  src: url('./assets/fonts/Manrope-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
    font-family: 'Phoenix Devanagari';
    src: url('./assets/fonts/PhoenixDevanagari-Regular.woff2') format('woff2'),
         url('./assets/fonts/PhoenixDevanagari-Regular.woff') format('woff'),
         url('./assets/fonts/PhoenixDevanagari-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Phoenix Devanagari Bold';
    src: url('./assets/fonts/PhoenixDevanagari-Bold.woff2') format('woff2'),
         url('./assets/fonts/PhoenixDevanagari-Bold.woff') format('woff'),
         url('./assets/fonts/PhoenixDevanagari-Bold.ttf') format('truetype');
    font-weight: Bold;
    font-style: normal;
    font-display: swap;
}


:root {
  --cim-font: 'Manrope', sans-serif;
  --cim-text-color: #111;
  --cim-bg-color: #fff;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--cim-font);
  background-color: var(--cim-bg-color);
  color: var(--cim-text-color);
  line-height: 1.6;
  overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}



img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}


input,
textarea,
button,
select {
  font-family: inherit;
  outline: none;
}



.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}




/* global button and heading style  */

.head-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

.heading-container {
  display: inline-block;
}

.heading {
  font-family: 'Anek Devanagari', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

.underlined {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

.underlined::after {
  content: "";
  position: absolute;
  background: #000000;
  left: 0;
  bottom: 5px;
  width: 33%;
  height: 6px;
}

.button-container {
  display: flex;
  align-items: center;
}

.chevron-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  padding: 0;
}



.chevron-icon {
  width: 20px;
  height: 30px;
  fill: #fafafa;
}

@media (max-width: 768px) {

  .heading {
    font-size: 24px;
  }
}

/* notification banner  */

.cim-notification-container {
  background-color: #00b769;
  color: #ffffff;
  padding: 12px 20px;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.cim-notification-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.cim-notification-container.cim-hidden {
  max-height: 0;
  padding: 0 20px;
  opacity: 0;
}

.cim-notification-text {
  flex: 1;
  margin: 0 auto;
  text-align: center;
}

.cim-close-button {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
  margin-left: 20px;
}

.cim-close-button:hover {
  opacity: 0.7;
}

.cim-close-button:active {
  opacity: 0.5;
}


/* pagination css  */


.cim-pagination {
  display: flex;
  width: fit-content;
  gap: 12px;
  margin: 0 auto;
  margin-top: 10px;
}

.cim-pagination button {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e3a8a;
}

.cim-pagination button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #1e40af;
}

.cim-pagination button:active {
  transform: translateY(0);
}

.cim-pagination-chevron-icon-left , .cim-pagination-chevron-icon-right{
  fill: #fff;
}
.cim-pagination-chevron-icon-left{
  transform: rotate(180deg);
}

/* Added active state styling for clicked buttons */
.cim-pagination button.active {
  background-color: #dc2626;
}

.cim-pagination button.active:hover {
  background-color: #b91c1c;
}

