/*
Theme Name: Parademi
4Theme URI: https://parademi.com
Author: Ali Çınaroğlu
Author URI: https://alicinaroglu.com
Description: Parademi projesi ve parademi.com için yapılmıştır
*/
body {
    margin: 0px;
    padding: 0px;
    line-height: 1.6;
    color: #ffffff;
    font-size: 18px;
    font-family: "Anek Latin", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    background: radial-gradient(circle, #0a0f0c 0%, #050807 100%);
}
a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
a:hover {
    color: #21714B;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}
p {
    margin: 0px;
    margin-bottom: 10px;
}
input, textarea, select {
    font-family: "Poppins", serif;
}
.only-mobile {
    display: none;
}
.desktop-only {
    display: block;
}
.container-full {
    width: 100%;
}
.container {
    max-width: 1320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
/*Header*/
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0px !important;
    padding-right: 0px !important;
    z-index: 10;
    border-bottom: 1px solid #0A6A45;
    padding-top: 20px;
    padding-bottom: 20px;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo img {
    width: 138px;
    height: auto;
}
/*Main Menu*/
.main-menu {
    display: flex;
    height: 26px;
    align-items: flex-start;
    gap: 30px;
}
.main-menu .sub-menu {
    display: none;
    position: absolute;
    background-color: #121F19;
    padding: 20px;
    border: 1px solid #4e6b5e;
    z-index: 2;
    border-radius: 10px;
}
.main-menu .menu-item-has-children:hover .sub-menu {
    display: block;
}
.main-menu .menu-item-has-children:hover .sub-menu li {
    line-height: 40px;
}
.main-menu .menu-item-has-children:hover .sub-menu li:last-child {
    border-bottom: none;
}
.main-menu li {
    list-style: none;
}
.main-menu li a {
    color: #ffffff;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}
.main-menu li a:hover {
    color: #7ED9AE;
}
.main-menu li.current-menu-item > a,
.main-menu li.current_page_item > a,
.main-menu li.current-menu-ancestor > a,
.main-menu li.current-menu-parent > a {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}
.main-menu li.current-menu-item > a::after,
.main-menu li.current_page_item > a::after,
.main-menu li.current-menu-ancestor > a::after,
.main-menu li.current-menu-parent > a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
}
.main-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 30px;
}
.main-menu .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 18px;
    height: 19px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="19" viewBox="0 0 18 19" fill="none"><path d="M14.25 7.25L9 12.5L3.75 7.25" stroke="%238EA4AC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
    background-size: contain;
    transform: translateY(-50%);
}
.desktop-fixed {
    display: flex;
    position: fixed;
    top: 0px;
    margin-left: auto;
    margin-right: auto;
    background-color: #121F19;
    z-index: 11;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/*Side Menu*/
.side-menu {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.side-menu li {
    list-style: none;
}
.side-menu li a {
    font-size: 16px;
    gap: 10px;
    color: #000000;
    font-weight: 500;
    border-radius: 100px;
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}
.side-menu li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
.side-menu li a:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/*Mobile Menu*/
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #121F19;
    z-index: 12;
    display: flex;
    flex-direction: column;
    transition: right 0.1s ease-in-out, opacity 0.1s ease-in-out;
    opacity: 0;
    padding-left: 15px;
}
.mobile-menu.open {
    right: 0;
    opacity: 1;
}
.menu-button.open {
    background-color: transparent;
}
.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(19, 24, 52, 0.1);
    padding-bottom: 20px;
    float: left;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    display: block;
}
.mobile-menu-items li {
    margin: 0;
    line-height: 35px;
}
.mobile-menu-items a {
    text-decoration: none;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    transition: color 0.3s ease;
}
.mobile-menu-items a:hover {
    color: #7ED9AE;
}
.mobile-menu-items li.current-menu-item > a,
.mobile-menu-items li.current_page_item > a,
.mobile-menu-items li.current-menu-ancestor > a,
.mobile-menu-items li.current-menu-parent > a {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}
.mobile-menu .sub-menu {
    padding-left: 20px;
}
.mobile-menu .sub-menu a {
    font-size: 17px;
}
.menu-close {
    font-size: 18px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 10px;
    z-index: 5;
    padding: 0 10px;
    line-height: 40px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7488%) hue-rotate(5deg) brightness(97%) contrast(92%);
}
.menu-button {
    border: none;
    cursor: pointer;
    z-index: 5;
    background-color: transparent;
    transition: opacity 0.3s ease-in-out;
    display: none;
    color: #ffffff;
    margin: 0px;
    padding: 0px;
    margin-left: 10px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7488%) hue-rotate(5deg) brightness(97%) contrast(92%);
}
.menu-button.hidden {
    opacity: 0;
    pointer-events: none;
}
.menu-mobil-menu-container {
    top: 0px;
    position: relative;
    margin-bottom: 20px;
    float: left;
    width: 100%;
}
.mobile-menu span {
    padding-left: 20px;
    padding-right: 20px;
    display: block;
    margin-bottom: 20px;
}
.mobile-menu p {
    text-align: center;
}
.mobile-menu span p {
    text-align: left;
    margin-left: 0px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(19, 24, 52, 0.1);
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.mobile-menu-header img {
    width: 138px;
    height: auto;
}
.button {
    font-size: 16px;
    gap: 10px;
    color: #000000;
    font-weight: 500;
    border-radius: 100px;
    background: linear-gradient(to bottom, #39AC7C, #39AC7C);
    background-color: #39AC7C; /* Fallback color */
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    display: block;
}
.button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 8px;
    pointer-events: none;
}
.button:hover {
    background-color: #2d8a62;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}
.button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.button-2 {
    background: #121F19;
    border: 1px solid #e9981d75;
}
.gradient-text {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.gradient-sep {
    height: 1px;
    background: linear-gradient(to right, #21714b0d, #7ed9ae8f, #ff8b000d);
    margin-top: 30px;
    margin-bottom: 30px;
}
/*Hero*/
.hero {
    background-image: url(img/hero-background.png);
    padding-top: 50px;
    padding-bottom: 50px;
    background-repeat: no-repeat;
    background-position: bottom;
}
.hero .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.hero h1 {
    font-size: 70px;
    font-weight: bold;
    line-height: 70px;
    margin-bottom: 20px;
}
.hero .button {
    padding: 10px 50px;
}
.hero .button:last-child {
    background: #121F19;
    border: 1px solid #4e6b5e;
}
.hero .buttons {
    display: flex;
    gap: 40px;
}
.hero p {
    margin-bottom: 40px;
}

 .video-container {
      position: relative;
      width: 100%;
      max-width: 100%;
    }
    .video-container video {
      width: 100%;
      display: block;
    }
    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 64px;
      color: white;
      background: rgba(0,0,0,0.5);
      border: none;
      border-radius: 50%;
      width: 100px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 2;
      transition: background 0.2s;
    }
    .play-button:hover {
      background: rgba(0,0,0,0.7);
    }
    #hiddenVideo, #hiddenCanvas,#hiddenVideo2, #hiddenCanvas2 {
      display: none;
    }

.top-headline {
    background: #121F19;
    border: 1px solid #4e6b5e;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-top: 40px;
    border-radius: 25px;
    padding-left: 13px;
    padding-right: 13px;
    line-height: 30px;
    width: fit-content;
}
.hero span img {
    width: 100%;
    height: auto;
}
.hero-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.hero-box {
    display: flex;
    flex-direction: column;
    background-color: #0F0F0F;
    padding: 15px;
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
    border-right: 1px solid #222222;
    padding-top: 50px;
    padding-bottom: 50px;
}
.hero-box:first-child {
    border-left: 1px solid #222222;
}
.hero-box .header {
    display: flex;
    margin-bottom: 5px;
}
.hero-box img {
    margin-right: 10px;
    width: 50px;
    height: 50px;
}
.hero-box h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(to right, #21714B, #7ED9AE, #7ED9AE);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.hero-box p {
    margin: 0;
    color: #ffffff;
}
/*Home Quote*/
.home-quote {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}
.home-quote h3 {}
.home-quote-text {
    background: linear-gradient(to right, #aac3ff1a 0%, #81a5ff0d 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #292929;
    text-align: center;
    color: #2F8E3F;
    font-size: 32px;
    line-height: 32px;
}
.home-quote-text p {
    background: linear-gradient(to right, #21714B, #7ED9AE, #7ED9AE);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/*Home Eğitimler*/
.home-egitimler {}
.home-egitimler h2 {
    font-size: 70px;
    font-weight: bold;
    line-height: 70px;
    margin-bottom: 20px;
}
.home-egitimler h3 {
    font-size: 24px;
    color: #ffffff;
    line-height: 24px;
    font-weight: 400;
}
.home-egitimler-heading {
    text-align: center;
    margin-bottom: 50px;
}
.home-egitimler-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
	padding-left: 0px;
	padding-right: 0px;
}
.home-egitim {
    background-color: #121F19;
    padding: 20px;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
    text-align: center;
    gap: 15px;
    display: flex;
    flex-direction: column;
}
.home-egitim h3 {
    margin-bottom: 0px;
    font-weight: 600;
}
.home-egitim p {
    font-size: 16px;
}
.home-egitim img {
    width: 100%;
    height: auto;
}
/*Home Manşet*/
.home-manset {
    margin-top: 100px;
    margin-bottom: 50px;
}
.home-manset-heading {
    text-align: center;
    margin-bottom: 50px;
}
.home-manset h2 {
    font-size: 70px;
    font-weight: bold;
    line-height: 70px;
    margin-bottom: 20px;
}
.home-manset h3 {
    font-size: 24px;
    color: #ffffff;
    line-height: 24px;
    font-weight: 400;
}
.manset-big {
    width: 70%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}
.manset-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.manset-box {
    text-align: center;
    padding: 15px;
    padding-top: 70px;
    padding-bottom: 0px;
}
.manset-box h3 {
    font-size: 18px;
    font-weight: 400;
}
.manset-sub-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.manset-sub-boxes .hero-box .header {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
/*Home Paketler*/
.home-paketler {
    margin-top: 100px;
    margin-bottom: 50px;
}
.home-paketler .top-headline {
    margin-left: auto;
    margin-right: auto;
}
.home-paketler-heading {
    text-align: center;
    margin-bottom: 50px;
}
.home-paketler h2 {
    font-size: 70px;
    font-weight: bold;
    line-height: 70px;
    margin-bottom: 20px;
}
.home-paketler h3 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
}
.home-paketler-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.home-paket {
    background-color: #121F19;
    padding: 20px;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
    text-align: center;
    gap: 15px;
    display: flex;
    flex-direction: column;
}
.home-paket h3 {
    margin-bottom: 0px;
    font-weight: 600;
}
.home-paket p {
    font-size: 16px;
}
.home-paket .gradient-sep {
    margin-bottom: 0px;
    margin-top: 0px;
}
.home-paket ul {
    margin: 0px;
    padding: 0px;
    text-align: left;
}
.home-paket ul li {
    list-style: none;
    margin-bottom: 10px;
}

.home-paket ul li::before {content: "";
    background-image: url(img/paket-icon.png);
    background-repeat: no-repeat;
    background-position: left;
    width: 20px;
    display: inline-block;
    height: 20px;
    margin-right: 10px;}

.home-paket ul li img {
    margin-right: 10px;
}
.home-paket ul li a {}
.home-paket-baslik {
    border-radius: 10px;
    border: 1px solid #4e6b5e;
}
.home-paket-baslik h4 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(to right, #21714B, #7ED9AE, #7ED9AE);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.home-paket-baslik h5 {
    font-size: 40px;
    font-weight: bold;
    margin: 0;
    color: #ffffff;
}
.home-paket-baslik h5 span {
    font-size: 24px;
    font-weight: 400;
}
/*Home Öğrenciler*/
.home-ogrenciler {
    margin-top: 100px;
    margin-bottom: 50px;
}
.home-ogrenciler-heading {
    text-align: center;
    margin-bottom: 50px;
}
.home-ogrenciler h2 {
    font-size: 70px;
    font-weight: bold;
    line-height: 70px;
    margin-bottom: 20px;
}
.home-ogrenciler h3 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
}
.carousel-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-nav-buttons {
    position: relative;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 100px;
    margin-top: 0;
}
.carousel-slide {
    flex: 0 0 calc(33.33% - 20px);
    min-width: calc(33.33% - 20px);
    margin: 0 10px;
    background-color: #0e2318;
    border: 1px solid #1a3e2a;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.carousel-logo {
    margin-bottom: 15px;
    height: 30px;
}
.carousel-logo img {
    height: auto;
	width: 138px;
}
.carousel-title {
    color: #4CAF50;
    font-size: 18px;
    margin-bottom: 10px;
}
.carousel-content {
    line-height: 1.5;
    color: #ffffff;
    flex-grow: 1;
}
.carousel-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #4CAF50;
}
.carousel-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #1a3e2a;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.carousel-dot.active {
    background-color: #4CAF50;
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(14 35 24);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.carousel-button-prev {
    left: 10px;
}
.carousel-button-next {
    right: 10px;
}
/*Home Makaleler*/
.home-makaleler {}
.home-makaleler h2 {
    font-size: 70px;
    font-weight: bold;
    line-height: 70px;
    margin-bottom: 20px;
}
.home-makaleler h3 {
    font-size: 24px;
    color: #ffffff;
    line-height: 24px;
    font-weight: 400;
}
.home-makaleler-heading {
    text-align: center;
    margin-bottom: 50px;
}
.home-makaleler-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.home-makale {
    background-color: #121F19;
    padding: 20px;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
    text-align: left;
    gap: 15px;
    display: flex;
    flex-direction: column;
}
.home-makale h3 {
    margin-bottom: 0px;
    font-weight: 600;
}
.home-makale p {
    font-size: 16px;
}
.home-makale img {
    width: 100%;
    height: auto;
}
/*Home Hakkımızda*/
.home-hakkimizda {
    margin-top: 100px;
    margin-bottom: 50px;
}
.home-hakkimizda h2 {
    font-size: 70px;
    font-weight: bold;
    line-height: 70px;
    margin-bottom: 20px;
}
.home-hakkimizda h3 {
    font-size: 24px;
    color: #ffffff;
    line-height: 24px;
    font-weight: 400;
}
.home-hakkimizda-heading {
    text-align: center;
    margin-bottom: 50px;
}
.hakkimizda-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.hakkimizda-content span p {
    font-weight: bold;
}
.hakkimizda-content span:first-child {
    gap: 30px;
    flex-direction: column;
    display: flex;
}
.hakkimizda-content span:first-child img {
    width: fit-content;
}
.hakkimizda-big {
    width: 100%;
    height: auto;
}
/*Home SSS*/
.home-sss {
    margin-top: 100px;
    margin-bottom: 50px;
}
.home-sss h2 {
    font-size: 70px;
    font-weight: bold;
    line-height: 70px;
    margin-bottom: 20px;
}
.home-sss h3 {
    font-size: 24px;
    color: #ffffff;
    line-height: 24px;
    font-weight: 400;
}
.home-sss-heading {
    text-align: center;
    margin-bottom: 50px;
}
.accordion-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.accordion-item {
    background-color: #0e2318;
    border: 1px solid #1a3e2a;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}
.accordion-header.active {
    border-bottom: 1px solid #1a3e2a;
}
.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}
.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}
.accordion-content-inner {
    padding: 20px 0;
    color: #ffffff;
}
@media (max-width: 768px) {
    .accordion-container {
        grid-template-columns: 1fr;
    }
}
/*Footer*/
footer {
    border-top: 1px solid #222222;
    padding-top: 50px;
}
footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    color: #82918A;
    font-size: 16px;
}
.footer-col h4 {
    margin-bottom: 30px;
    color: #ffffff;
    text-align: right;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}
.footer-col ul li {
    margin-bottom: 5px;
}
.footer-col ul li a {
    text-decoration: none;
    color: #82918A;
    font-weight: 400;
}
.footer-col ul li a:hover {
    color: #ffffff;
}
.footer-col:last-child {
    text-align: right;
}
.footer-col .custom-logo-link img {width: 138px;height: auto;}
.footer-bottom {
    text-align: center;
    color: #82918A;
    font-size: 16px;
}
.footer-bottom a {
    color: #ffffff;
}
.go-top {
    position: fixed;
    right: 30px;
    bottom: 75px;
    cursor: pointer;
    z-index: 2;
    display: none;
    color: #ffffff;
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    vertical-align: middle;
    height: 40px;
    width: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    line-height: 10px;
}
.go-top.show {
    display: flex;
}
.go-top span {
    color: #ffffff;
}



/*Page & Single */
.page-view {margin-top: 30px;}
.page-content {
    margin-bottom: 30px;
    gap: 30px;
    padding: 30px;
    border-radius: 10px;
    color: #000000;
    background-color: #ffffff;}
.page-content a {color: #0A6A45;}
.page-columns {display: flex;gap:30px;  margin-top: 30px;
    margin-bottom: 30px;}
.page-left {width: 70%;}
.page-sidebar {width: 30%;}

.woocommerce-account .woocommerce-MyAccount-navigation ul {padding: 0px;margin: 0px;}
.woocommerce-account .woocommerce-MyAccount-navigation li {list-style: none;}



.wc-block-components-checkout-place-order-button {
	
	
    font-size: 16px;
    gap: 10px;
    color: #000000;
    font-weight: 500;
    border-radius: 100px;
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
	font-family: "Anek Latin", sans-serif;
}



.product-main-content {
      display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 30px;
    padding: 30px;
    border-radius: 10px;
	color: #000000;
	background-color: #ffffff;
}

.product-columns {display: flex;gap:30px;  margin-top: 30px;
    margin-bottom: 30px;}

.product-column-left {width: 70%;}
.product-column-sidebar {width: 30%;}


.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {width: 100%;}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {display: none;}

.woocommerce-result-count, .woocommerce-ordering {display: none;}


.product-image-column {
    flex: 0 0 calc(40% - 15px);
    max-width: calc(40% - 15px);
	    position: relative;
}

.product-info-column {
    flex: 0 0 calc(60% - 15px);
    max-width: calc(60% - 15px);
}

.product-image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-title {
    font-size: 28px;
    margin: 0 0 20px;
    line-height: 1.3;
}

.product-excerpt {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.product-price {
    margin: 20px 0;
}

.regular-price {
    font-size: 22px;
    color: #777;
    text-decoration: line-through;
    margin-right: 10px;
}

.sale-price {
    font-size: 26px;
    font-weight: 700;
	color: #21714B;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
	
	font-size: 16px;
    gap: 10px;
    color: #000000;
    font-weight: 500;
    border-radius: 100px;
    background: linear-gradient(to bottom, #39AC7C, #39AC7C);
    background-color: #39AC7C;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    display: block;
    font-family: "Anek Latin", sans-serif;
	
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
	
	font-size: 16px;
    gap: 10px;
    color: #000000;
    font-weight: 500;
    border-radius: 100px;
    background: linear-gradient(to bottom, #39AC7C, #39AC7C);
    background-color: #39AC7C;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    display: block;
    font-family: "Anek Latin", sans-serif;
	
}

.product-sidebar {background-color: #121F19;
    padding: 20px;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
    text-align: left;
    gap: 15px;
    display: flex;
    flex-direction: column;
	margin-bottom: 30px;

}

.product-sidebar h3 {margin-bottom: 0px;}


.sidebar-blog-grid {
    display: grid;
    flex: 1;
    gap: 25px;
}
.sidebar-blog-grid .blog-thumbnail {
   text-align: left;
}
.sidebar-blog-grid .blog-thumbnail img {
width: 100px;
    float: left;
    margin-right: 20px;
	height: auto;
}

.sidebar-category {margin: 0px;padding: 0px;}
.sidebar-category li {    list-style: none;
    border-bottom: 1px solid #38413d;
    line-height: 40px;}
.woocommerce #reviews #comments ol.commentlist {padding: 0px;margin: 0px;}
/* Tabs */
.product-tabs {

    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    border-radius: 10px;
    color: #000000;
    background-color: #ffffff;
}




.tabs-navigation {
    margin-bottom: 20px;
}

.tabs-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.tabs-list li {
    margin-right: 30px;
}

.tabs-list li a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    position: relative;
}

.tabs-list li.active a {
    color: #43b082;
}

.tabs-list li.active a:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #43b082 0%, #43b082 100%);
}

.tab-pane {
    display: none;
    padding: 20px 0;
}

.tab-pane a { color: #21714B;}

.tab-pane.active {
    display: block;
}

/* Related Products */
.related-products {
    margin: 50px 0;
}

.related-products h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-item img {
    width: 100%;
    height: auto;
    display: block;
}

.product-item h3 {
    font-size: 16px;
    margin: 15px 15px 10px;
    color: #333;
}

.product-item .price {
    margin: 0 15px 15px;
    font-weight: 600;
    color: #00C4CC;
}

.product-item .button {
    margin: 0 15px 15px;
    display: block;
    text-align: center;
    padding: 8px 15px;
    font-size: 14px;
}

.optional {display: none!important;}


/* Magazine Layout Styles */
.magazine-home {
    margin-top: 30px;
}

/* Archive Header */
.archive-header {
    margin-bottom: 50px;
    padding: 50px 0;
    border-bottom: 1px solid #4e6b5e;
}

.archive-header-content {
    text-align: center;
}

.archive-type {
    display: inline-block;
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 20px;
}

.archive-title {
    font-size: 48px;
    line-height: 52px;
    margin: 0 0 15px 0;
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.archive-description {
    color: #82918A;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.archive-description p {
    margin: 0;
}

.archive-meta {
    color: #ffffff;
    font-size: 14px;
}

.no-posts-found {
    text-align: center;
    padding: 80px 20px;
    background-color: #121F19;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
}

.no-posts-found h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ffffff;
}

.no-posts-found p {
    color: #82918A;
    margin-bottom: 30px;
}

/* Search Results Page */
.search-header {
    background: linear-gradient(135deg, #0e2318 0%, #121F19 100%);
}

.search-form-container {
    max-width: 600px;
    margin: 30px auto 0;
}

.search-form-large {
    display: flex;
    gap: 0;
    background-color: #121F19;
    border: 1px solid #4e6b5e;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.search-form-large .search-field {
    flex: 1;
    padding: 15px 25px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
}

.search-form-large .search-field:focus {
    outline: none;
    border: none;
}

.search-form-large .search-submit {
    padding: 15px 30px;
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    border: none;
    border-radius: 0;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-form-large .search-submit:hover {
    transform: scale(1.02);
}

.search-form-large .search-submit .dashicons {
    font-size: 20px;
    line-height: 1;
}

/* Search Results Highlighting */
.post-card-excerpt mark {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    color: #000000;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 500;
}

/* No Search Results */
.no-search-results {
    padding: 60px 40px;
}

.no-results-icon {
    margin-bottom: 20px;
}

.no-results-icon .dashicons {
    font-size: 80px;
    width: 80px;
    height: 80px;
    color: #4e6b5e;
}

.no-search-results h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.no-search-results > p {
    font-size: 18px;
    margin-bottom: 40px;
}

.no-search-results > p strong {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.search-suggestions {
    background-color: #0e2318;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-suggestions h3 {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #7ED9AE;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions li {
    padding: 8px 0;
    color: #ffffff;
    position: relative;
    padding-left: 25px;
}

.search-suggestions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #7ED9AE;
    font-weight: bold;
}

.no-search-results .search-form-container {
    margin-bottom: 30px;
}

/* Single Post / Article Layout */
.article-header {
    padding: 0px 0 30px;
    border-bottom: 1px solid #4e6b5e;
    margin-bottom: 30px;
}

.article-header-content {

}

.article-breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: #82918A;
}

.article-breadcrumbs a {
    color: #82918A;
    transition: color 0.3s ease;
}

.article-breadcrumbs a:hover {
    color: #7ED9AE;
}

.article-category {
    margin-bottom: 20px;
}

.category-badge {
    display: inline-block;
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.category-badge:hover {
    transform: translateY(-2px);
    color: #000000;
}

.article-title {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #ffffff;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: #82918A;
    font-size: 14px;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta-item .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.article-featured-image {
    margin-bottom: 40px;
}

.article-featured-image .featured-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.article-featured-image-inline {
    margin-bottom: 30px;
}

.article-featured-image-inline .featured-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.article-content {
    background-color: #121F19;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
    padding: 40px;
    color: #ffffff;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 30px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content h2 {
    font-size: 32px;
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.article-content h3 {
    font-size: 26px;
}

.article-content h4 {
    font-size: 22px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content a {
    color: #7ED9AE;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: #FF8B00;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.article-content iframe {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

/* Responsive video container for YouTube/Vimeo */
.article-content .wp-block-embed,
.article-content .wp-block-embed__wrapper,
.article-content .embed-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 30px 0;
    border-radius: 10px;
    background-color: #0e2318;
}

.article-content .wp-block-embed iframe,
.article-content .wp-block-embed__wrapper iframe,
.article-content .embed-responsive iframe,
.article-content .wp-block-embed object,
.article-content .wp-block-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Make all iframes in content responsive by default */
.article-content > iframe,
.article-content p > iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    margin: 30px auto;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    background-color: #0e2318;
    border-left: 4px solid #7ED9AE;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 5px;
    font-style: italic;
}

.article-content code {
    background-color: #0e2318;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.article-content pre {
    background-color: #0e2318;
    border: 1px solid #4e6b5e;
    border-radius: 5px;
    padding: 20px;
    overflow-x: auto;
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 20px;
    background-color: #121F19;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
    margin-bottom: 30px;
}

.tags-label {
    color: #7ED9AE;
    font-weight: 600;
    font-size: 14px;
}

.article-tags .tag-item {
    padding: 6px 15px;
    background-color: #0e2318;
    border: 1px solid #4e6b5e;
    border-radius: 20px;
    color: #ffffff;
    font-size: 13px;
    transition: all 0.3s ease;
}

.article-tags .tag-item:hover {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    color: #000000;
    border-color: transparent;
}

/* Author Bio */
.article-author-bio {
    display: flex;
    gap: 20px;
    padding: 30px;
    background-color: #121F19;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
    margin-bottom: 40px;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #7ED9AE;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 20px;
    margin: 0 0 10px 0;
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.author-description {
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Related Posts */
.related-posts-section {
    margin-bottom: 40px;
}

.related-posts-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Comments Section */
.comments-area {
    background-color: #121F19;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
}

.comments-title {
    font-size: 32px;
    margin: 0 0 10px 0;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.comment-list li {
    margin-bottom: 30px;
}

.comment-list .children {
    list-style: none;
    padding-left: 40px;
    margin-top: 30px;
}

.comment-body {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: #0e2318;
    border: 1px solid #4e6b5e;
    border-radius: 8px;
}

.comment-author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #7ED9AE;
}

.comment-content-wrap {
    flex: 1;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-author-name {
    font-size: 18px;
    font-weight: 600;
    color: #7ED9AE;
}

.comment-author-name a {
    color: #7ED9AE;
    text-decoration: none;
}

.comment-author-name a:hover {
    color: #FF8B00;
}

.comment-metadata {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #82918A;
}

.comment-metadata a {
    color: #82918A;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-metadata a:hover {
    color: #7ED9AE;
}

.comment-metadata .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.comment-content {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-content p {
    margin: 0 0 10px 0;
}

.comment-awaiting-moderation {
    background-color: #4e6b5e;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: #ffffff;
}

.comment-reply a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 20px;
    background-color: #121F19;
    border: 1px solid #4e6b5e;
    border-radius: 20px;
    color: #7ED9AE;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comment-reply a:hover {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    color: #000000;
    border-color: transparent;
}

.comment-reply .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.comment-navigation a {
    padding: 10px 20px;
    background-color: #0e2318;
    border: 1px solid #4e6b5e;
    border-radius: 5px;
    color: #7ED9AE;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comment-navigation a:hover {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    color: #000000;
    border-color: transparent;
}

.no-comments {
    text-align: center;
    padding: 40px;
    color: #82918A;
    font-size: 16px;
}

/* Comment Form */


.comment-reply-title {
    font-size: 28px;
    margin: 0 0 10px 0;
}

.comment-reply-title small {
    font-size: 14px;
    margin-left: 15px;
}

.comment-reply-title small a {
    color: #82918A;
    text-decoration: none;
}

.comment-reply-title small a:hover {
    color: #FF8B00;
}

.comment-form {
    margin-top: 30px;
}

.comment-form p {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.comment-form .required {
    color: #FF8B00;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: -webkit-fill-available;
    padding: 12px 15px;
    background-color: #0e2318;
    border: 1px solid #4e6b5e;
    border-radius: 5px;
    color: #ffffff;
    font-size: 15px;
    font-family: "Anek Latin", sans-serif;
    transition: border-color 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #7ED9AE;
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form .form-submit {
    margin-top: 25px;
}

.comment-form .button {
    display: inline-block;
    cursor: pointer;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #0e2318;
    border: 1px solid #4e6b5e;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-button .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.share-button:hover {
    transform: translateX(5px);
}

.share-facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
}

.share-twitter:hover {
    background-color: #1da1f2;
    border-color: #1da1f2;
    color: #ffffff;
}

.share-linkedin:hover {
    background-color: #0077b5;
    border-color: #0077b5;
    color: #ffffff;
}

.share-whatsapp:hover {
    background-color: #25d366;
    border-color: #25d366;
    color: #ffffff;
}

/* Featured Post Hero */
.magazine-hero {
    margin-bottom: 50px;
}

.featured-post {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    background-color: #121F19;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
    overflow: hidden;
}

.featured-post-image {
    position: relative;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post-image:hover img {
    transform: scale(1.05);
}

.featured-post-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.post-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.post-category {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}

.post-date {
    color: #82918A;
    font-size: 14px;
}

.featured-post-title {
    font-size: 48px;
    line-height: 52px;
    margin: 0;
}

.featured-post-title a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.featured-post-title a:hover {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.featured-post-excerpt {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

/* Magazine Main Layout */
.magazine-main {
    margin-bottom: 50px;
}

.magazine-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.magazine-content {
    min-width: 0;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 0;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background-color: #121F19;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.post-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.1);
}

.post-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: #000000;
    font-weight: 500;
}

.post-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-card-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 13px;
    color: #82918A;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-card-title {
    font-size: 20px;
    margin: 0;
    line-height: 1.4;
}

.post-card-title a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color: #7ED9AE;
}

.post-card-excerpt {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

.read-more {
    color: #7ED9AE;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: 5px;
}

.read-more:hover {
    color: #FF8B00;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    background-color: #121F19;
    border: 1px solid #4e6b5e;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    color: #000000;
}

.pagination .current {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    color: #000000;
    font-weight: 600;
}

/* Sidebar Styles */
.magazine-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background-color: #121F19;
    border: 1px solid #4e6b5e;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
}

.sidebar-widget .gradient-sep {
    margin-top: 15px;
    margin-bottom: 20px;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
}

.search-field {
    flex: 1;
    padding: 12px 15px;
    background-color: #0e2318;
    border: 1px solid #4e6b5e;
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
}

.search-field:focus {
    outline: none;
    border-color: #7ED9AE;
}

.search-submit {
    padding: 12px 20px;
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    border: none;
    border-radius: 5px;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.search-submit .dashicons {
    font-size: 18px;
    line-height: 1;
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #4e6b5e;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-post-image:hover img {
    transform: scale(1.1);
}

.popular-post-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.popular-post-content h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.popular-post-content h4 a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.popular-post-content h4 a:hover {
    color: #7ED9AE;
}

.popular-post-content .post-date {
    font-size: 12px;
    color: #82918A;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #4e6b5e;
    padding: 10px 0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.category-list li a:hover {
    color: #7ED9AE;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    padding: 8px 15px;
    background-color: #0e2318;
    border: 1px solid #4e6b5e;
    border-radius: 20px;
    color: #ffffff;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: linear-gradient(to right, #21714B, #7ED9AE, #FF8B00);
    color: #000000;
    border-color: transparent;
}


/*Responsive*/
@media (max-width: 1400px) {
    .container, .desktop-fixed {
        max-width: 1045px;
        width: 100%;
    }
    header .container {
        gap: 15px;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 5px;
    }
    .main-menu {
        height: auto;
        margin-top: 0px;
        margin-bottom: 0px;
        align-items: center;
        padding: 0px;
    }
    .main-menu li a {
        text-align: center;
        justify-content: center;
        display: flex;
    }
    .main-menu li .sub-menu li a {
        justify-content: start;
    }
    .hero-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    .carousel-slide {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }

    .featured-post-title {
        font-size: 36px;
        line-height: 40px;
    }

    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .archive-title {
        font-size: 36px;
        line-height: 40px;
    }
}
@media (max-width: 1100px) {
    .only-mobile {
        display: block;
    }
    .desktop-only {
        display: none;
    }
    .main-navigation {
        display: none;
    }
    .container {
        max-width: 90%;
        width: 100%;
    }
    .hero h1, .home-egitimler h2, .home-manset h2, .home-paketler h2, .home-ogrenciler h2, .home-makaleler h2, .home-hakkimizda h2, .home-sss h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .hero p {
        font-size: 20px;
    }
    .desktop-fixed.container {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .side-menu, .main-menu {
        padding: 0px;
        height: fit-content;
    }
    .main-menu {
        gap: 10px;
    }
    header {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .side-navigation {
        align-items: center;
        display: flex;
    }
    .side-menu li a {
        padding: 10px 20px;
        font-size: 13px;
    }
    .home-egitimler-list, .manset-boxes, .manset-sub-boxes, .home-paketler-list, .home-makaleler-list, .hakkimizda-content {
        grid-template-columns: repeat(2, 1fr);
    }
    footer .container, .footer-col h4, .footer-col ul, .footer-col:last-child {
        grid-template-columns: repeat(1, 1fr);
        text-align: left;
    }
    .carousel-slide {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
    }

	.product-columns, .product-main-content{flex-direction: column;}
	.product-column-left,.product-column-right,.product-column-sidebar {width: 100%;}
	.product-image-column,.product-info-column {max-width: 100%;width: 100%;}

    /* Magazine Responsive */
    .magazine-layout {
        grid-template-columns: 1fr;
    }

    .magazine-sidebar {
        position: static;
        order: 2;
    }

    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-header h2 {
        font-size: 35px;
    }
}
@media (max-width: 767px) {
    .hero .container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
    .hero {
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
    }
    .hero-boxes, .manset-sub-boxes {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }
    .top-headline {
        margin-top: 0px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero .buttons {
        flex-direction: column;
        gap: 20px;
    }
    .hero-box, .manset-box {
        padding-top: 20px;
        padding-bottom: 20px;
        border: 1px solid #222222;
    }
    .home-quote {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .home-quote-text {
        width: auto;
        font-size: 24px;
    }
    .home-egitimler-list, .manset-boxes, .manset-sub-boxes, .home-paketler-list, .home-makaleler-list, .hakkimizda-content {
        grid-template-columns: repeat(1, 1fr);
    }

    /* Magazine Mobile */
    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-post-image {
        height: 250px;
    }

    .featured-post-content {
        padding: 25px;
    }

    .featured-post-title {
        font-size: 28px;
        line-height: 32px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .post-card-image {
        height: 180px;
    }

    .archive-header {
        padding: 30px 0;
    }

    .archive-title {
        font-size: 28px;
        line-height: 32px;
    }

    .archive-description {
        font-size: 14px;
    }

    .search-form-large .search-submit {
        padding: 15px 20px;
        font-size: 14px;
    }

    .no-search-results {
        padding: 40px 20px;
    }

    .no-results-icon .dashicons {
        font-size: 60px;
        width: 60px;
        height: 60px;
    }

    .no-search-results h2 {
        font-size: 24px;
    }

    .no-search-results > p {
        font-size: 16px;
    }

    .search-suggestions {
        padding: 20px;
    }

    /* Single Post Mobile */
    .article-title {
        font-size: 32px;
    }

    .article-content {
        padding: 25px;
        font-size: 16px;
    }

    .article-author-bio {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .share-buttons {
        gap: 8px;
    }

    .share-button {
        padding: 10px 15px;
        font-size: 13px;
    }

    /* Comments Mobile */
    .comments-area {
        padding: 25px;
    }

    .comments-title {
        font-size: 24px;
    }

    .comment-body {
        flex-direction: column;
        padding: 20px;
    }

    .comment-list .children {
        padding-left: 20px;
    }

    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea {
        font-size: 14px;
    }

    .comment-reply-title {
        font-size: 22px;
    }
}
@media (max-width: 555px) {}
@media (max-width: 375px) {}