@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700&display=swap");

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #031057;
}

html::-webkit-scrollbar-thumb {
  background: #2c3e91;
  border-radius: 5rem;
}

body {
 background: linear-gradient(270deg, #7C7399, #ffffff, #2596be, #90EE90);
  background-size: 800% 800%;
  animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

section {
  padding: 5rem 9%;
}

.heading {
  text-align: center;
  font-size: 6vw;
  color: #cba527;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.heading span {
  text-transform: uppercase;
  color: #2c3e91;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  border-radius: 5rem;
  background: #2c3e91;
  padding: .7rem;
  font-size: 1.7rem;
  color: #cba527;
  padding-left: 2rem;
}

.btn i {
  height: 4rem;
  width: 4rem;
  line-height: 4rem;
  font-size: 1.7rem;
  text-align: center;
  background: #cba527;
  color: #2c3e91;
  border-radius: 50%;
  margin-left: 1rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.btn:hover i {
  margin-left: 2rem;
}



.home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4rem;
  min-height: calc(100vh - 6.5rem);
}

.home .image {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
  text-align: center;
}

.home .image img {
  height: 50rem;
  width: 50rem;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.home .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
}

.home .content h3 {
  color: #cba527;
  font-size: 4rem;
  padding-bottom: .5rem;
}

.home .content span {
  font-size: 3rem;
  color: #2c3e91;
  padding: .5rem 0;
  display: block;
}

.home .content p {
  font-size: 1.5rem;
  color: #444444;
  padding: 1rem 0;
  line-height: 2;
}

.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.about .row .info-container {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
}

.about .row .info-container h1 {
  font-size: 3rem;
  color: #cba527;
  text-transform: uppercase;
  padding-bottom: 1rem;
}

.about .row .info-container .box-container {
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.about .row .info-container .box-container .box {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20rem;
  flex: 1 1 20rem;
}

.about .row .info-container .box-container .box h3 {
  font-size: 1.7rem;
  color: #d4af37;
  padding: 1rem 0;
  font-weight: normal;
}

.about .row .info-container .box-container .box h3 span {
  color: #444444;
  font-weight: lighter;
}

.about .row .count-container {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.about .row .count-container {
  flex: 1 1 42rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.about .row .count-container .box {
  padding: 3rem 3rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.about .row .count-container .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
}

.about .row .count-container .box h3 {
  font-size: 4.8rem;
  color: #2c3e91;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.about .row .count-container .box p {
  font-size: 1.8rem;
  color: #eef3ff;
  line-height: 1.6;
}

.skills .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}

.skills .box-container .box {
  padding: 2rem;
  text-align: center;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
  border-radius: .5rem;
  background: #1a1a1a;
}

.skills .box-container .box:hover {
  background: #cba527;
}

.skills .box-container .box:hover h3 {
  color: #0d0d0d;
}

.skills .box-container .box img {
  height: 7rem;
  margin-bottom: 1rem;
}

.skills .box-container .box h3 {
  color: #cba527;
  font-size: 1.7rem;
  font-weight: normal;
  text-transform: uppercase;
}

.education .box-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.education .box-container .box {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
  margin-left: 2rem;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 3.5rem;
  padding-bottom: 3rem;
  border-left: 0.1rem solid #444444;
  position: relative;
}

.education .box-container .box i {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 1.7rem;
  border-radius: 50%;
  background: #2c3e91;
  color: #cba527;
  text-align: center;
  position: absolute;
  top: -1rem;
  left: -2.5rem;
}

.education .box-container .box span {
  font-size: 1.7rem;
  color: #cba527;
  border-radius: 5rem;
  padding: .5rem 1.5rem;
  background: #1a1a1a;
}

.education .box-container .box h3 {
  font-size: 2rem;
  padding: 1rem 0;
  color: #cba527;
  padding-top: 3rem;
  font-weight: normal;
}

.education .box-container .box p {
  font-size: 1.5rem;
  color: #444444;
  line-height: 2;
}

.portfolio {
  text-align: center;
}

.portfolio .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(31rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.portfolio .box-container .box {
  height: 30rem;
  overflow: hidden;
  position: relative;
}

.portfolio .box-container .box:hover .content {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.portfolio .box-container .box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.portfolio .box-container .box .content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #1a1a1a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2rem;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.portfolio .box-container .box .content h3 {
  font-size: 2.5rem;
  color: #cba527;
  text-transform: uppercase;
  font-weight: normal;
}

.portfolio .box-container .box .content p {
  padding: 1rem 0;
  font-size: 1.5rem;
  line-height: 2;
  color: #444444;
}

.portfolio .box-container .box .content a {
  font-size: 2rem;
  color: #cba527;
}

.portfolio .box-container .box .content a:hover {
  color: #cba527;
}

.blogs .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(31rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 1.5rem;
}

.blogs .box-container .box {
  text-align: center;
  padding: 2rem;
  border-radius: .5rem;
  background: #1a1a1a;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
}

.blogs .box-container .box:hover .image img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blogs .box-container .box .image {
  height: 25rem;
  width: 100%;
  border-radius: .5rem;
  overflow: hidden;
}

.blogs .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.blogs .box-container .box .content .icons {
  position: relative;
  top: -1rem;
  border-radius: .5rem;
  padding: 1.5rem;
  display: inline-block;
  background: #0d0d0d;
}

.blogs .box-container .box .content .icons a {
  font-size: 1.4rem;
  margin: 0 1rem;
  color: #cba527;
}

.blogs .box-container .box .content .icons a:hover {
  color: #2c3e91;
}

.blogs .box-container .box .content .icons a i {
  padding-right: .5rem;
  color: #2c3e91;
}

.blogs .box-container .box .content h3 {
  font-size: 2rem;
  color: #cba527;
  font-weight: normal;
}

.blogs .box-container .box .content p {
  font-size: 1.5rem;
  color: #444444;
  padding: 1rem 0;
  line-height: 2;
}

.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact .row .info-container {
  width: 40rem;
}

.contact .row .info-container h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #cba527;
  padding-bottom: 1rem;
}

.contact .row .info-container p {
  font-size: 1.5rem;
  line-height: 2;
  color: #444444;
  padding: 1rem 0;
}

.contact .row .info-container .box-container {
  padding: 2rem 0;
}

.contact .row .info-container .box-container .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
}

.contact .row .info-container .box-container .box i {
  font-size: 3rem;
  color: #2c3e91;
}

.contact .row .info-container .box-container .box h3 {
  font-size: 2rem;
  color: #cba527;
}

.contact .row .info-container .share a {
  font-size: 2rem;
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  border-radius: 50%;
  background: #1a1a1a;
  color: #cba527;
  text-align: center;
  margin-right: .3rem;
}

.contact .row .info-container .share a:hover {
  background: #2c3e91;
}

.contact .row form {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
}

.contact .row form .inputBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact .row form .inputBox input {
  width: 49%;
}

.contact .row form .inputBox input,
.contact .row form textarea {
  border-radius: 5rem;
  padding: 1.2rem 1.8rem;
  font-size: 1.6rem;
  color: #cba527;
  text-transform: none;
  margin: .7rem 0;
  background: none;
}

.contact .row form textarea {
  width: 100%;
  border-radius: 1rem;
  resize: none;
  height: 25rem;
}

.contact .row form .btn {
  padding: 1rem 3rem;
  cursor: pointer;
}

.contact .row form .btn:hover {
  background: #cba527;
  color: #0d0d0d;
}

@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }

  section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .heading {
    font-size: 12vw;
  }

 
  .home {
    text-align: center;
    gap: 2rem;
  }

  .home .image img {
    height: 35rem;
    width: 35rem;
  }

  .home .content h3 {
    font-size: 3rem;
  }

  .home .content span {
    font-size: 2.5rem;
  }

  .contact .row form .inputBox input {
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}
/* ===== NEW NAVBAR (like the image) ===== */
body{
  padding-bottom: 110px; /* حتى لا تغطي القائمة المحتوى */
}

.navbar{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 32px));
  height: 78px;

  background: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;

  z-index: 1000;
}

.navbar a{
  text-decoration: none;
}

.navbar > a:not(.center-btn){
  width: 56px;
  height: 56px;
  border-radius: 18px;

  display: grid;
  place-items: center;

  color: #b9b9b9;
  position: relative;

  transition: transform .15s ease, color .15s ease;
}

.navbar > a:not(.center-btn) i{
  font-size: 20px;
}

.navbar .dot{
  position: absolute;
  bottom: 6px;

  width: 6px;
  height: 6px;
  border-radius: 50%;

  background: #2f8f6a;
  opacity: 0;
  transform: translateY(4px);
  transition: .15s ease;
}

.navbar > a.active{
  color: #2f8f6a;
  transform: translateY(-2px);
}

.navbar > a.active .dot{
  opacity: 1;
  transform: translateY(0);
}

/* Center circle button */
.center-btn{
  width: 74px;
  height: 74px;
  border-radius: 50%;

  background: #2f8f6a;
  color: #fff;

  display: grid;
  place-items: center;

  transform: translateY(-26px);
  border: 8px solid #fff;
  box-shadow: 0 18px 40px rgba(47,143,106,.25);
}

.center-btn i{
  font-size: 22px;
}

@media (max-width: 420px){
  .navbar{ height: 72px; }
  .navbar > a:not(.center-btn){ width: 52px; height: 52px; }
  .center-btn{ width: 70px; height: 70px; transform: translateY(-24px); }
}
.admin-content{
  margin-left: 270px;
  transition: margin-left .4s ease;
  min-height: 100vh;
}
.sidebar.collapsed ~ .admin-content{
  margin-left: 85px;
}
@media (max-width: 768px){
  .admin-content{ margin-left: 0; padding-top: 70px; }
}
/*# sourceMappingURL=style.css.map */
/* ================= CONTACT SECTION ================= */

.contact{
    padding: 10rem 9% 8rem;
    min-height: 100vh;
}

.contact .heading{
    text-align:center;
    font-size: clamp(4rem,6vw,7rem);
    margin-bottom:5rem;
    color:#ffffff;
    letter-spacing:1px;
}

.contact .heading span{
    color:#d4af37;
}

/* ===== layout ===== */

.contact .row{
    display:flex;
    gap:6rem;
    align-items:flex-start;
    justify-content:space-between;
}

/* ===== left side ===== */

.left-contact{
    flex:1 1 45rem;
    display:flex;
    gap:5rem;
    align-items:flex-start;
}

.get-touch{
    min-width:18rem;
}

.contact-info{
    flex:1;
    min-width:24rem;
}

.get-touch h1,
.contact-info h1{
    font-size:2.2rem;
    color:#ffffff;
    margin-bottom:1.8rem;
    font-weight:600;
}

.get-touch p{
    font-size:1.5rem;
    color:#cbd5f0;
    margin-bottom:2rem;
}

/* ===== social icons ===== */

.share{
    display:flex;
    gap:1rem;
}

.share a{
    width:4.5rem;
    height:4.5rem;
    line-height:4.5rem;
    text-align:center;
    border-radius:50%;
    background:#0f172a;
    color:#f5c518;
    font-size:1.8rem;
    transition:0.3s;
    box-shadow:0 8px 18px rgba(0,0,0,0.25);
}

.share a:hover{
    background:#2c3e91;
    color:#fff;
    transform:translateY(-4px);
}

/* ===== contact info boxes ===== */

.contact-info .box{
    display:flex;
    gap:1.5rem;
    margin-bottom:1.6rem;
    padding:1.4rem 1.6rem;
    border-radius:1.2rem;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.06);
}

.contact-info .box i{
    font-size:2.2rem;
    color:#3f5bd8;
    margin-top:.2rem;
}

.contact-info .box h3{
    font-size:1.6rem;
    color:#ffffff;
    margin-bottom:.3rem;
}

.contact-info .box p{
    font-size:1.4rem;
    color:#d4dcf3;
}

/* ===== form card ===== */

.contact-card{
    flex:1 1 52rem;
    max-width:62rem;
    background:rgba(255,255,255,0.07);
    backdrop-filter:blur(10px);
    padding:3rem;
    border-radius:2rem;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 45px rgba(0,0,0,0.3);
}

.contact-card h2{
    font-size:2.6rem;
    color:#ffffff;
    margin-bottom:.5rem;
}

.contact-sub{
    font-size:1.4rem;
    color:#c9d2ea;
    margin-bottom:2rem;
}

/* ===== inputs ===== */

.input-field{
    display:flex;
    align-items:center;
    background:rgba(10,18,40,0.75);
    border-radius:5rem;
    padding:1.3rem 1.6rem;
    margin-bottom:1.3rem;
    border:1px solid rgba(255,255,255,0.08);
}

.input-field i{
    color:#9fb1ff;
    margin-right:1rem;
}

.input-field input,
.input-field textarea{
    width:100%;
    background:transparent;
    border:none;
    outline:none;
    color:#ffffff;
    font-size:1.5rem;
}

.input-field input::placeholder,
.input-field textarea::placeholder{
    color:#8da2d8;
}

/* textarea */

.textarea{
    border-radius:1.5rem;
    align-items:flex-start;
    padding-top:1.5rem;
}

.textarea textarea{
    height:20rem;
    resize:none;
}

/* ===== button ===== */

.send-btn{
    width:100%;
    padding:1.4rem;
    border:none;
    border-radius:5rem;
    background:#22b89a;
    color:#fff;
    font-size:1.6rem;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.send-btn:hover{
    background:#1a9e84;
    transform:translateY(-2px);
    box-shadow:0 12px 22px rgba(34,184,154,0.35);
}

/* ===== responsive ===== */

@media (max-width:992px){

.contact .row{
flex-direction:column;
gap:4rem;
}

.left-contact{
flex-wrap:wrap;
gap:4rem;
}

.contact-card{
max-width:100%;
}

}

@media (max-width:768px){

.contact{
padding:8rem 2rem 10rem;
}

.left-contact{
flex-direction:column;
gap:3rem;
}

.get-touch,
.contact-info{
min-width:100%;
}

}
/* ================= DARK MODE - CONTACT ================= */

body.dark .contact{
  background: transparent !important;
}

body.dark .contact .heading{
  color: #f5f7ff;
}

body.dark .contact .heading span{
  color: #d4af37;
}

body.dark .get-touch h1,
body.dark .contact-info h1{
  color: #f5f7ff;
}

body.dark .get-touch p{
  color: #c9d2ea;
}

body.dark .share a{
  background: #0f172a;
  color: #f5c518;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

body.dark .share a:hover{
  background: #2c3e91;
  color: #fff;
}

body.dark .contact-info .box{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

body.dark .contact-info .box i{
  color: #4d6bff;
}

body.dark .contact-info .box h3{
  color: #f5f7ff;
}

body.dark .contact-info .box p{
  color: #d4dcf3;
}

body.dark .contact-card{
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 45px rgba(0,0,0,0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.dark .contact-card h2{
  color: #f5f7ff;
}

body.dark .contact-sub{
  color: #c9d2ea;
}

body.dark .input-field{
  background: rgba(10,18,40,0.75);
  border: 1px solid rgba(255,255,255,0.08);
}

body.dark .input-field:focus-within{
  border-color: #2f8f6a;
  box-shadow: 0 0 0 4px rgba(47,143,106,0.15);
}

body.dark .input-field i{
  color: #cfd8ea;
}

body.dark .input-field input,
body.dark .input-field textarea{
  color: #f5f7ff;
}

body.dark .input-field input::placeholder,
body.dark .input-field textarea::placeholder{
  color: #93a0bf;
}

body.dark .send-btn{
  background: #22b89a;
  color: #fff;
}

body.dark .send-btn:hover{
  background: #1b9f85;
  box-shadow: 0 10px 22px rgba(34,184,154,0.25);
}
.info-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:2rem;
    margin-top:2rem;
}

.info-card{
    background: rgba(255, 255, 255, 0.10);
    padding: 2.5rem;
    border-radius: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    transition: 0.3s ease;
}

.info-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.22);
}
.info-card h3{
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.info-card p{
    color: #eef3ff;
    font-size: 1.45rem;
    line-height: 1.9;
}

.info-card span{
    color: #f7c325;
    font-weight: 600;
}
.cv-toggle-wrap{
    display:inline-block;
}

.cv-toggle-input{
    display:none;
}

.cv-toggle-label{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:180px;
    height:78px;
    padding:0 22px;
    border-radius:999px;
    cursor:pointer;
    background:#e9e9e9;
    box-shadow:
        inset 0 2px 8px rgba(0,0,0,.08),
        0 4px 12px rgba(0,0,0,.08);
    transition:.35s ease;
    user-select:none;
}

.cv-toggle-text{
    font-size:2.4rem;
    font-weight:800;
    line-height:1;
    z-index:2;
    transition:.35s ease;
    letter-spacing:.03em;
}

.cv-toggle-off{
    color:#ffffff;
    opacity:.95;
}

.cv-toggle-on{
    color:#ffffff;
    opacity:.55;
}

.cv-toggle-circle{
    position:absolute;
    top:7px;
    left:8px;
    width:64px;
    height:64px;
    border-radius:50%;
    background:#ffffff;
    box-shadow:0 4px 10px rgba(0,0,0,.18);
    transition:.35s ease;
    z-index:3;
}

.cv-toggle-input:checked + .cv-toggle-label{
    background:#57e000;
    box-shadow:
        inset 0 2px 8px rgba(0,0,0,.10),
        0 4px 14px rgba(87,224,0,.35);
}

.cv-toggle-input:checked + .cv-toggle-label .cv-toggle-circle{
    left:108px;
}

.cv-toggle-input:checked + .cv-toggle-label .cv-toggle-off{
    opacity:.45;
}

.cv-toggle-input:checked + .cv-toggle-label .cv-toggle-on{
    opacity:1;
}
/* ================= CATALOGS PAGE ================= */

.catalogs-page{
  padding: 40px 20px 120px;
}

.catalogs-intro{
  text-align: center;
  margin-bottom: 40px;
}

.catalogs-intro h1{
  font-size: 3.2rem;
  margin-bottom: 10px;
}

.catalogs-intro p{
  font-size: 1.6rem;
}

.catalog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.catalog-card{
  text-align: center;
}

.catalog-card img{
  width: 100%;
  max-width: 250px;
  height: 360px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.catalog-btn{
  display: inline-block;
  margin-top: 20px;
  background: #e31b23;
  color: #fff;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 700;
}

.catalog-empty{
  text-align: center;
}

@media (max-width: 991px){
  .catalog-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px){
  .catalog-grid{
    grid-template-columns: 1fr;
  }
}
.catalog-subtitle{
  text-align:center;
  font-size:1.6rem;
  margin-top:-10px;
  margin-bottom:40px;
  opacity:.8;
}
.lang-switcher{
  position:fixed;
  top:20px;
  right:20px;
  display:flex;
  gap:10px;
  z-index:999;
}

.lang-flag{
  width:40px;
  height:40px;
  border-radius:50%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid transparent;
  transition:0.3s;
}

.lang-flag img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.lang-flag:hover{
  transform:scale(1.1);
}

.active-lang{
  border-color:#2f8f6a;
  box-shadow:0 0 8px rgba(0,0,0,0.2);
}