/* Created By AkinaCss */
/* Fonts area */

@font-face {
    font-family: 'poppins-bold';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'poppins-medium';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'poppins-regular';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'roboto';
    src: url('../fonts/Roboto.ttf') format('truetype');
    font-style: normal;
}


/* ============================================================================== */

:root {
    --color-primary: #228B22;
    --color-primary-light: #A8E6A1;
    --color-primary-dark: #3C6E47;
    --color-accent: #FF8C42;
    --color-secondary: #0077B6;

    --color-bg: #F9F9F9;
    --color-border: #E1E8E3;
    --color-text-dark: #2E2E2E;
    
    --color-text-light: #757575;

    --color-bg-1: #f0f0f0;
    --color-bg-2: #deecf0;

    --white: #FFFFFF;
    --black: #000000;

    --wp: #25D366;

    --headertxt: 'poppins-medium';
    --headertxtRegular: 'poppins-regular';
    --headertxtBold: 'poppins-bold';
    --maintxt: 'roboto';
}

h1 {
    font-size: clamp(32px, 5vw, 48px);
}
p {
  font-size: clamp(14px, 2vw, 16px);
}
  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: var(--maintxt);
}

body {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: auto;
    background-color: var(--color-bg);
}

a {
    text-decoration: none;
    color: var(--textClr);
    transition: 0.3s;
}

/* ===================================================== */

/* Header Css Start */

header {
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 998;
}

.headerArea {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-text-dark);
    transition: 0.3s;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
    padding: 0px 5%;
    position: relative;
}

.headerArea.active {
    background-color: var(--color-text-dark);
}

.Hleft-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    height: 100%;
}

.logoImg {
    max-width: 230px;
    min-width: 180px;
    height: 100%;
    width: 15%;
    object-fit: scale-down;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logoImg img {
    height: 100%;
    width: 100%;
    object-fit: scale-down;
}

.nav-bar {
    height: 100%;
}

.nav-bar ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: 0.3s;
    gap: 30px;
}

.nav-bar ul li {
    list-style: none;
    text-decoration: none;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navA {
    all: unset;
    display: flex;
    padding: 10px 0px;
    justify-content: center;
    align-items: center;
    outline: none;
    font-family: var(--headertxt);
    cursor: pointer;
    position: relative;
    background-image:linear-gradient(to left, var(--white),  var(--white) 33.33333%, var(--color-primary) 66.66666%, var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 100%;
    background-position: top right;
    transition:all 0.3s ease;
}

.navA:hover {
    background-position: top right 100%;
}

.navA::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-light);
    background: linear-gradient(90deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    transition: width 0.3s ease, left 0.3s ease;
}

.navA:hover::after {
    width: 100%;
}


.navA.dropdown-btn.active {
    color: var(--blue-3);
}

.navA.dropdown-btn.active:hover {
    border-color: var(--blue-3) !important;
}

.myBtn {
    border: none;
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 16px;
    transition: 0.5s;
    cursor: pointer;
    color: var(--white);
    font-family: var(--headertxt);
}

.main-btn {
    background-image:linear-gradient(to left, var(--color-primary-light),  var(--color-primary-light) 50%, var(--color-primary) 50%, var(--color-primary-light));
    background-size: 300% 100%;
    background-position: top right;
    color: var(--color-text-dark) !important;
}

.main-btn:hover {
    background-position: top right 100%;
    color: var(--white) !important;
    text-shadow: 0px 0px 2px var(--black);
}

.search-btn {
    all: unset;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
}

.search-btn svg {
    width: 30px;
    height: 30px;
}

.search-btn svg path {
    transition: 0.3s;
    stroke: var(--white);
}

.search-btn:hover svg path {
    stroke: var(--color-primary-light);
}

.lang-btn {
    all: unset;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
}

.lang-btn svg {
    width: 35px;
    height: 35px;
}

.lang-btn svg path {
    transition: 0.3s;
    fill: var(--white);
}
.lang-btn:hover svg path {
    fill: var(--color-primary-light);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger svg {
    width: 50px;
    height: 50px;
}

.hamburger .menu path {
    stroke: var(--white);
    transition: 0.3s;
}

.hamburger:hover .menu path {
    stroke: var(--color-primary-light);
}

.hamburger .close path {
    fill: var(--color-primary-light);
}

.hamburger .close {
    display: none;
}
.hamburger.active .menu {
    display: none;
}
.hamburger.active .close {
    display: flex;
}

/* dropdown area */

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--black);
    z-index: 999;
    box-shadow: inset 0px 0px 20px 1px #0000008e;
    max-height: 0px;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s;
}

.dropdown-content.active {
    max-height: 500px;
    visibility: visible;
    overflow: auto;
    opacity: 1;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--color-bg-1);
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-primary-light);
    border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--color-border); 
}

.headerLink {
    padding: 20px 30px 0px 30px;
    transition: 0.3s;
    font-family: var(--headertxt);
    font-size: 32px;
    color: var(--color-primary-light);
}
.headerLink:hover {
    color: var(--color-primary);
}

.right-link {
    width: 80%;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
}

.basliklar-area {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: start;
    gap: 20px;
    padding: 10px 20px 30px 20px;
}

.baslik-box {
    display: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: start;
    gap: 10px;
}

.baslik-box.active {
    display: flex;
}

.basslik-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 15px;
    flex: 1 1 25%;
    width: 25%;
    max-width: calc(25% - 20px);
}

.basslik-inner a {
    color: var(--white);
    font-weight: 900;
    font-size: 15px;
}

.basslik-inner a:hover {
    color: var(--color-primary-light) !important;
    transform: translateX(5px);
}

.basslik-inner a i {
    color: var(--color-primary-light);
}

.basslik-inner.aboutUs {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.basslik-inner.aboutUs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s;
}

.basslik-inner.aboutUs:hover img {
    transform: scale(1.1);
}

.basslik-inner.aboutUs::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background-color 0.3s;
}

.basslik-inner.aboutUs:hover::before {
    background-color: rgba(0, 0, 0, 0.5);
}

.basslik-inner.aboutUs .textAbout {
    position: absolute;
    color: var(--white);
    margin: 20px;
    z-index: 2;
    font-size: 22px;
    font-family: var(--headertxt);
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    text-shadow: 0px 0px 5px var(--black);
}

.basslik-inner.aboutUs:hover .textAbout {
    border-bottom: 2px solid var(--color-primary-light);
    color: var(--color-primary-light);
}


.headerA {
    width: 100%;
    color: var(--white) !important;
    font-family: var(--headertxt);
    border-bottom: 3px solid var(--color-primary-light);
    font-size: 18px !important;
    margin: 10px 0px;
}

.headerA:hover {
    width: 100%;
    color: var(--color-primary-light) !important;
    font-family: var(--headertxt);
    border-bottom: 3px solid var(--color-primary-light);
}

/* About Us DropDown */

.about-drp {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    gap: 20px;
    position: relative;
}

.left-text-nav {
    width: 20%;
    max-width: 20%;
    max-height: 500px;
    height: auto;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    overflow: auto;
}

.left-text-nav nav {
    width: 100%;
}

.left-text-nav nav ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 10px;
    padding: 20px 10px;
}
.left-text-nav nav ul li {
    list-style: none;
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    position: relative;
    transition: 0.3s;
}

.left-text-nav nav ul li i {
    color: var(--white);
    position: absolute;
    right: 0;
    width: 10px;
    transition: 0.3s;
}

.leftBtnNav:hover + i {
    color: var(--color-primary-light) !important;
    transform: translateX(5px);
}

.leftBtnNav {
    all: unset;
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
    padding: 0px 20px;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    position: relative;
    transition: 0.5s;
    color: var(--white);
}

.leftBtnNav:hover {
    color: var(--color-primary-light) !important;
}

.leftBtnNav::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image:linear-gradient(to left, var(--color-text-dark),  var(--color-text-dark) 50%, var(--color-primary) 50%, var(--color-primary-light));
    background-size: 300% 100%;
    background-position: top right;
    color: var(--color-text-dark) !important;
    transition: all 0.5s ease;
}

.leftBtnNav:hover::after {
    background-position: top right 100%;
    text-shadow: 0px 0px 2px var(--black);
}

.leftBtnNav.active {
    color: var(--color-primary-light) !important;
}

.leftBtnNav.active::after {
    background-position: top right 100%;
    text-shadow: 0px 0px 2px var(--black);
}

.leftBtnNav.active + i {
    color: var(--color-primary-light) !important;
}


.left-text-nav nav ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
}


.aboutArea {
    width: 80%;
    max-width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: start;
    height: fit-content;
    gap: 20px;
    padding: 20px 0px;
}

.about-box {
    flex: 1 1 33%;
    width: 33%;
    max-width: calc(33% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 10px;
}

.about-box-img {
    width: 100%;
    height: 170px;
    border-radius: 8px;
    overflow: hidden;
}

.about-box-img img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: 1s;
}

.about-box p {
    font-family: var(--headertxt);
    font-size: 22px;
    color: var(--white);
    transition: 0.3s;
}

.about-box:hover p {
    color: var(--color-primary-light);
    transform: translateX(5px);
}

.about-box:hover .about-box-img img {
    transform: scale(1.1);
}

/* sertifika area */

.about-box.certificate-box .about-box-img {
    width: 100%;
    height: 270px;
    border-radius: 8px;
    overflow: hidden;
}

/* Search area */

.search-area {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}

.search-area input {
    width: 80%;
    max-width: 80%;
    height: 50px;
    border: 2px solid var(--main);
    border-radius: 8px 0px 0px 8px;
    padding: 0px 20px;
    font-family: var(--headertxt);
    font-size: 20px;
    color: var(--main);
    transition: 0.3s;
    outline: none;
}

.search-area input::placeholder {
    color: var(--main);
}

.search-area input:focus {
    border-color: var(--blue-3);
}

.search-area button {
    width: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 60px;
    height: 50px;
    border: none;
    border-radius: 0px 8px 8px 0px;
    background-image:linear-gradient(to left, var(--color-primary-light),  var(--color-primary) 50%, var(--color-primary) 50%, var(--color-primary-light));
    background-size: 300% 100%;
    background-position: top right;
    color: var(--white);
    font-family: var(--headertxt);
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.search-area button:hover {
    background-position: top right 100%;
    text-shadow: 0px 0px 2px var(--black);
}

.search-area button:hover svg path {
    stroke: var(--color-text-dark) !important;
}

.mobile-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--color-text-dark);
    z-index: 999;
    max-height: 0px;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s;
}

/* Header Css End */

/* ===================================================== */

/* Responsive Css Start */

@media screen and (max-width: 1450px) {
    .headerArea {
        padding: 0px 5%;
    }
}

@media screen and (max-width: 1440px) {
    .basslik-inner {
        flex: 1 1 33%;
        width: 33%;
        max-width: calc(33% - 20px);
    }

    .left-text-nav {
        width: 30%;
        max-width: 30%;
    }

    .right-link {
        width: 70%;
        max-width: 70%;
    }
}

@media screen and (max-width: 1024px) {
    .basslik-inner {
        flex: 1 1 50%;
        width: 50%;
        max-width: calc(50% - 20px);
    }
}

@media screen and (max-width: 1200px) {
    .about-box {
        flex: 1 1 50%;
        width: 50%;
        max-width: calc(50% - 20px);
    }
}

@media screen and (max-width: 1140px) {
    .headerArea {
        padding: 0px 2%;
    }
    .nav-bar ul {
        gap: 20px;
    }
}

@media screen and (max-width: 1000px) {
    .Hleft-area {
        gap: 20px;
    }
    .logoImg {
        min-width: 160px;
    }
}

@media screen and (max-width: 950px) {
    .headerArea {
        padding: 0px 3%;
    }

    .nav-bar ul li {
        display: none;
    }

    .none {
        display: flex !important;
    }

    .hamburger {
        all: unset;
        display: flex;
        width: 50px;
        height: 50px;
    }

    .nav-bar ul {
        gap: 10px;
    }

    .mobile-menu.active {
        padding: 20px 0px;
        max-height: 500px;
        visibility: visible;
        overflow: auto;
        opacity: 1;
    }

    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .mobile-menu ul li {
        list-style: none;
        text-align: center;
    }
}

/* Responsive Css End */

/* ===================================================== */

/* Mobile Navigation Css Start */

.navA.dropdown-btn.new-dropdown-btn.active {
    background-position: top right 100%;
}

.navA.dropdown-btn.new-dropdown-btn.active::after {
    width: 100%;
}

.dropdown-content.new-dropdown-content {
    all: unset;
    display: none;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--cardbg);
    z-index: 999;
    max-height: 200px;
    overflow: auto;
    box-shadow: inset 0px 0px 10px 1px #00000062;
    padding: 10px 0px;
}

/* width */
.dropdown-content.new-dropdown-content::-webkit-scrollbar {
    width: 5px;
}

.dropdown-content.new-dropdown-content.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dropdown-btn.new-dropdown-btn {
    width: 100%;
    text-align: center;
}

.mobile-menu ul {
    width: 100%;
}

.mobile-menu ul li {
    width: 100%;
}

.dropdown-content.new-dropdown-content a {
    color: var(--white);
    font-weight: 900;
}

/* Mobile Navigation Css End */

/* ===================================================== */

.contact-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
  }
  
  .contact-buttons .btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 22px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, background-color 0.2s ease;
  }
  .contact-buttons .btn svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
  }
  
  .contact-buttons .whatsapp-btn {
    background-color: #25d366; /* WhatsApp yeÅŸili */
    cursor: pointer;
  }
  
  .contact-buttons .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0,Â 0,Â 0,Â 0.2);
  }



  /* 404 Page */

  .notf {
    width: 100%;
    height: 100vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin: 0;
    background: #131313;
    color: #fff;
    font-size: 96px;
    letter-spacing: -7px;
  }
  
  .not-txt {
    animation: glitch 1s linear infinite;
  }
  
  @keyframes glitch{
    2%,64%{
      transform: translate(2px,0) skew(0deg);
    }
    4%,60%{
      transform: translate(-2px,0) skew(0deg);
    }
    62%{
      transform: translate(0,0) skew(5deg); 
    }
  }
  
  .not-txt:before,
  .not-txt:after{
    content: attr(title);
    position: absolute;
    left: 0;
  }
  
  .not-txt:before{
    animation: glitchTop 1s linear infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  }
  
  @keyframes glitchTop{
    2%,64%{
      transform: translate(2px,-2px);
    }
    4%,60%{
      transform: translate(-2px,2px);
    }
    62%{
      transform: translate(13px,-1px) skew(-13deg); 
    }
  }
  
  .not-txt:after{
    animation: glitchBotom 1.5s linear infinite;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  }
  
  @keyframes glitchBotom{
    2%,64%{
      transform: translate(-2px,0);
    }
    4%,60%{
      transform: translate(-2px,0);
    }
    62%{
      transform: translate(-22px,5px) skew(21deg); 
    }
  }


@media (max-width: 700px) {
    .notf {
        font-size: 70px;
      }
}

@media (max-width: 480px) {
    .notf {
        font-size: 50px;
      }
}
