


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
:root {
  --primary-color: #111827;
  --secondary-color: #374151;
  --accent-color: #2563eb;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --background: #ffffff;
  --nav-background: #E6E9FE;
  --background-alt: #f9fafb;
  --border-color: #e5e7eb;
  --nav-height: 60px;
}
body{
    font-family:'Poppins', Arial ,sans-serif;
    /*background:#f4f6f9;*/
    color:#fff;
    overflow-x:hidden;
	/*background:url('../back.jpg');
	background-size: cover;*/
   height: 100vh;
}
/* ==================================
				NAVBAR 
================================== */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    /*background:#111827;*/
	background:rgba(0,0,0,0.35);
    backdrop-filter:blur(3px);
    z-index:9999;
}
.navbar.scrolled{
    background: #293A4A;
    /*background: rgba(86, 56, 52, 0.95);*/
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar.scrolled .nav-container{
    height: 52px;
}

.nav-container{
    max-width:1200px;
    margin:auto;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#fff;
    font-size:24px;
    text-decoration:none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  list-style: none;
  margin-bottom: 0rem;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e1e5ed;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #9599a3;
}
.nav-link.active {
  color: #ccd0d9;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.nav-btn.secondary {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-color);
}

.nav-btn.secondary:hover {
  background: var(--background-alt);
}

.nav-btn.primary {
  color: #ffffff;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.nav-btn.primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.hamburger{
    display:none;
    flex-direction:column;
    justify-content:center;
    width:28px;
    height:24px;
    cursor:pointer;
    border:none;
    background:none;
    padding:0;
    z-index:1001;
}

.hamburger span{
    display:block;
    width:28px;
    height:3px;
    margin:3px 0;
    background:#fff;
    border-radius:2px;
    transition:all .3s ease;
}
.navbar.scrolled .hamburger span{
    background:#facc15; /* yellow */
}
.navbar .hamburger.active span{
    background:#111827;
}
.nav-logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    font-size:20px;
    z-index:1001;
}

.logo-icon{
    width:32px;
    height:32px;
    background-color:#fff;

    -webkit-mask:url("ink-pen-svgrepo-com.svg") no-repeat center;
    -webkit-mask-size:contain;

    mask:url("ink-pen-svgrepo-com.svg") no-repeat center;
    mask-size:contain;

    transition:background-color .3s ease;
}

.navbar.scrolled .logo-icon{
    background-color:#facc15;
}

.logo-text{
    letter-spacing:-0.5px;
    line-height:1;
}

/* ======================
   HERO SECTION
====================== */

.hero{
    height:250px;
    background:
    linear-gradient(rgba(0,0,0,.45),
    rgba(0,0,0,.45)),
    url('../img/back.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    border-bottom:8px solid #f5d547;
}

.hero h1{
    color:#fff;
    font-size:45px;
    font-weight:300;
    text-align:center;
	transform: translateY(20px);
}

/* Mobile */

@media(max-width:768px){

    .hamburger{
        display:flex;
    }

    .nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: min(320px, 85vw);
		height: 100vh;
		background: var(--background);
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding: 46px 32px 32px;
		gap: 32px;
		box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
		transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	  }

	  .nav-menu.active {
		right: 0;
	  }
	  .nav-link:hover,
		.nav-link.active {
		  color: #021c59;
		  transition: all .5s;
    transform : translateX(10px);
		}
		.nav-link.active {
		  color: #0f1a33;
		}

	  .nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	  }

	  .nav-item {
		border-bottom: 1px solid var(--border-color);
	  }

	  .nav-link {
		display: block;
		padding: 16px 0;
		font-size: 16px;
		color: #27375c;
		transition: all 1s;  /* lets make it smooth */
	  }

	  .nav-link::after {
		display: none;
	  }

	  .nav-actions {
		flex-direction: column;
		width: 100%;
	  }

	  .nav-btn {
		width: 100%;
		text-align: center;
		padding: 14px 20px;
	  }

    .hamburger.active span:nth-child(1){
        transform:rotate(45deg) translate(5px,5px);
    }

    .hamburger.active span:nth-child(2){
        opacity:0;
    }

    .hamburger.active span:nth-child(3){
        transform:rotate(-45deg) translate(5px,-5px);
    }
	.hero{
        height:150px;
    }

    .hero h1{
		margin-top:-150px;
        font-size:25px;
		transform:translateY(100px);
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-list {
    gap: 20px;
  }
}

.content{
    margin-top:100px;
    padding:20px;
    height:2000px;
}

/* ==================================
				MOBILE 
================================== */






/* ==================================
			MAIN WRAPPER 
================================== */
.wrapper{
    width:100%;
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:25px;
    padding:110px 20px 40px;
    align-items:flex-start;
}
/* Mobile */
@media screen and (max-width:768px){

    .wrapper{
        flex-direction:column;
        gap:15px;
        padding:80px 15px 20px;
    }

}

.sidebar-toggle-wrap{
    position:fixed;
    top:150px;
    left:5px;
    z-index:1002;
    transition:top .3s ease;
    display:none;
}

.sidebar-toggle-wrap.scrolled{
    top:55px;
}

.toggle-wrap{
    width:50px;
    height:50px;
    background:#CFECEC;
    border-radius:5px;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
}

.toggle-bar{
    width:28px;
    height:3px;
    background:#222;
    position:relative;
    transition:.3s;
}

.toggle-bar::before,
.toggle-bar::after{
    content:"";
    position:absolute;
    left:0;
    width:28px;
    height:3px;
    background:#222;
    transition:.3s;
}

.toggle-bar::before{
    top:-8px;
}

.toggle-bar::after{
    top:8px;
}

.toggle-wrap.active .toggle-bar{
    background:transparent;
}

.toggle-wrap.active .toggle-bar::before{
    top:0;
    transform:rotate(45deg);
}

.toggle-wrap.active .toggle-bar::after{
    top:0;
    transform:rotate(-45deg);
}

/* SIDEBAR */

.sidebar{
    position:fixed;
    top:270px;
    /*left:0;*/
    width:280px;
    padding:10px 5px;
    /*height:calc(100vh - 110px);*/
    max-height:calc(100vh - 318px);
    background:#CFECEC;
    border-right:10px solid #ddd;
    overflow:auto;
    transition:top .3s ease, height .3s ease, left .3s ease;
    z-index:999;
}

.sidebar.scrolled{
    top:55px;
    height:calc(100vh - 55px);
}

.sidebar-title{
    text-align:center;
    font-size:20px;
    margin-bottom:25px;
    font-weight:700;
    color:#380b41;
}
.sidebar ul{
    list-style:none;
    margin:0;
    padding:0;
}
.sidebar ul li{
    border-bottom:1px solid #f0f0f0;
}

.sidebar ul li:last-child{
    border-bottom:none;
}
.sidebar ul li a{
    display:flex;
    align-items:center;
    gap:14px;
    padding:12px 15px;
    text-decoration:none;
    color:#666;
    font-size:15px;
    /*transition:all 0.3s ease;*/
    letter-spacing:0;
    transition:
        padding-left .3s ease,
        letter-spacing .3s ease,
        background-color .3s ease;
}

.sidebar ul li a:hover{
    background:#f8f8f8;
    color:#333;
}
.sidebar ul li.active a{
    background:#f2f2f2;
    color:#444;
}
.icon{
    width:14px;
    height:14px;
    display:inline-block;
}
/* Category Colors */
.green{background:#138c43;}
.blue{background:#0d4d85;}
.orange{background:#b65d12;}
.yellow{background:#c9a91c;}
.purple{background:#5a507f;}
.gray{background:#999;}


/* ================= CONTAINER ================= */
/*
.accordion-wrapper{
    flex:1;
    width:100%;
    margin-left:300px;
    max-width:900px;
    background:#4B5320;
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(12px);
    border-radius:8px;
    padding:10px;
    box-shadow:0 20px 50px rgba(0,0,0,0.4);
}
.accordion-wrapper{

    margin-top:-90px; 

}
.accordion-wrapper{
    flex:1;
    margin-left:300px;
    width:auto;
}
*/
.accordion-wrapper{
    width:calc(100% - 300px);
    max-width:900px;
    margin-left:300px;
    margin-top:-90px;
    background:#fafafa; /*#4B5320;*/
    border-radius:8px;
    padding:10px;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}
.accordio-background {
    background:
        linear-gradient(
            rgba(219,226,236, 0.4),
            rgba(219,226,236, 0.4)
        ),
        url("../img/header-back.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ================= TITLE ================= */

.page-title{
    text-align:center;
    color:#380b41;
    font-size:26px;
    margin-bottom:35px;
    font-weight:700;
}

.page-title span{
    color:#38bcf8;
}







@media(max-width:768px){

    .accordion-wrapper{
        width:100%;
        max-width:100%;
        margin-left:0;
        margin-top:-78px;
    }

}





/* CONTENT */

.content{
    margin-left:300px;
    padding:140px 20px 20px;
}

.content p{
    margin-bottom:20px;
    line-height:1.8;
}

/* OVERLAY */

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.4);
    display:none;
    z-index:998;
}

.overlay.show{
    display:block;
}

/* MOBILE */

@media(max-width:768px){

    .sidebar-toggle-wrap{
        display:block;
    }
    .sidebar-title{
        text-align:center;
        justify-content:center;
        vertical-align:middle;
        font-size:18px;
        font-weight:500;
        margin-bottom:18px;
    }

    .sidebar{
        top:150px;
        left:-280px;
    }
    

    .sidebar.active{
        left:0;
    }

    .content{
        margin-left:0;
        padding-top:140px;
    }
}

.section-heading{
    font-size:24px;
    font-weight:700;
    margin:25px 0 15px;
    color:#0f172a;
    position:relative;
    padding-left:18px;
}

.section-heading::before{
    content:'';
    position:absolute;
    left:0;
    top:2px;
    width:6px;
    height:32px;
    border-radius:10px;
    background:linear-gradient(180deg,#2563eb,#7c3aed);
}

.faq-group{
    margin-bottom:30px;
}

.faq-item{
    background:#fff;
    border-radius:6px;
    margin-bottom:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faq-item.active{
    border:1px solid #dbeafe;
    box-shadow:0 10px 25px rgba(37,99,235,.12);
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 16px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    color:#1e293b;
    transition:.3s;
}

.faq-item.active .faq-question{
    background:linear-gradient(90deg,#eff6ff,#f5f3ff);
    color:#2563eb;
}

.faq-icon{
    width:12px;
    height:12px;
    border-right:2px solid #64748b;
    border-bottom:2px solid #64748b;
    transform:rotate(45deg);
    transition:.3s;
}

.faq-item.active .faq-icon{
    transform:rotate(-135deg);
    border-color:#4f46e5;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    opacity:0;
    padding:0 20px;
    color:#475569;
    line-height:1.8;
    transition:
        max-height .4s ease,
        opacity .3s ease,
        padding .3s ease;
}

.faq-item.active .faq-answer{
    max-height:400px;
    opacity:1;
    padding:0 20px 20px;
}

.faq-answer p{
    margin-top:12px;
}

/* Mobile */

@media (max-width:768px){

    .accordion-wrapper{
        padding:12px;
    }

    .section-heading{
        font-size:20px;
    }

    .faq-question{
        padding:14px;
        font-size:15px;
        line-height:1.5;
    }

    .faq-answer{
        font-size:14px;
    }

    .faq-icon{
        font-size:18px;
        margin-left:10px;
        flex-shrink:0;
    }
}






/* ================= FOOTER ================= */
.footer{
    width:100%;
    background:linear-gradient(135deg,#111827,#1e40af);
    padding:30px 20px;
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* Footer Inner Content */

.footer .footer-content{
    width:100%;
    max-width:1200px;
    text-align:center;
}

.footer h2{
    margin-bottom:10px;
    color:#ff7b54;
}

.footer p{
    color:#cbd5e1;
    margin-bottom:20px;
}

.footer .footer-links{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.footer .footer-links a{
    text-decoration:none;
    color:#fff;
    background:#1e293b;
    padding:12px 18px;
    border-radius:12px;
    transition:0.4s;
}
.footer .copyright{
    text-align:center;
    margin-top:25px;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:15px;
    font-size:14px;
}

/* Footer Hover */

.footer .footer-links a:hover{
	background:white;
	color:#2563eb;
    transform:translateY(-4px);
}


