@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --primary-500: grey;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--primary-color);
}

html,
body {
  overflow-x: hidden;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

ol,
ul {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

img {
  max-width: 100%;
}

section {
  padding: 80px 0;
  scroll-margin-top: 180px;
}

.section-title {
  color: var(--primary-100);
  font-size: 45px;
  font-weight: 400;
  text-align: center;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

/* CONTENT WRAPPER START */

.content-wrapper {
  padding: 20px;
  border-radius: 8px;
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 40px !important;
  margin-bottom: 20px !important;
}

.content-wrapper ul li {
  list-style: unset;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.content-wrapper ol li {
  list-style: unset;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.content-wrapper p + h2,
.contnet-wrapper p + h3,
.content-wrapper p + h4,
.content-wrapper p + h5,
.content-wrapper p + h6 {
  margin-bottom: 20px;
}

.content-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 20px 0;
}

.content-wrapper i {
  color: var(--primary-color);
  margin-right: 10px;
}
/* CONTENT WRAPPER END */

/* DESKTOP-HEADER START */

.desktop-header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
}

.desktop-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 0px;
  padding: 0 120px;
  z-index: 999;
  background: var(--primary-100);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.desktop-header.sticky .logo {
  display: block;
}

.desktop-header.sticky .white-logo {
  display: none;
}


.desktop-header.sticky .menu-list {
  color: var(--primary-900);
}

.header-top {
  background-color: var(--primary-color);
  padding: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  position: relative;
  z-index: 2;
}

.desktop-header.sticky .header-top {
  border-radius: 0px;
  background-color: white;
  border-bottom: 1px solid var(--primary-500);
}

.header-top .left ul {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header-top .left ul li a {
  color: var(--primary-100);
  display: flex;
  align-items: center;
  gap: 5px;
}

.desktop-header.sticky .header-top .left ul li a  {
  color: black;
}

.header-top .right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.header-top .right ul li a {
  color: var(--primary-100);
  font-size: 18px;
}

.desktop-header.sticky .header-top .right ul li a {
  color: black;
}

.header-bottom {
  padding: 45px 15px 15px 15px;
  margin-top: -30px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  transition: all 0.5s ease;
}

.header-logo img {
  width: 200px;
}

.header-logo .logo {
  display: none;
}

.header-bottom .bottom-center {
  display: flex;
  justify-content: center;
}

.header-bottom .menu-list {
  display: flex;
  align-items: center;
  color: var(--primary-100);
}

.header-bottom .bottom-center .menu-list li a {
  padding: 0px 20px 40px 20px;
  text-align: center;
}

.header-bottom .bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.header-bottom .bottom-right .language-list {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--primary-100);
}

.desktop-header.sticky .bottom-right .language-list {
  color: var(--primary-900) ;
}

/* DESKTOP-HEADER END */

/* MOBIL HEADER START */

/* MOBILE HEADER START */

@media (min-width: 992px) {
  .mobile-header {
    display: none;
  }
}

@media (max-width: 992px) {
  .desktop-header {
    display: none;
  }
}

.mobile-header {
  transition: all 0.3s ease;
  padding: 10px;
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: white;
}

.mobile-top {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 500px) {
  .mobile-top {
    padding: 0 10px;
  }
}

.mobile-top .logo {
  width: 150px;
}

.menu-logo {
  display: inline-block;
}

.menu-logo img {
  width: 175px;
}

.mobile-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 435px) {
  .mobile-top .logo {
    width: 90px;
  }
}

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

.hamburger .bar {
  display: block;
  margin: 5px 0;
  height: 3px;
  width: 30px;
  border-radius: 10px;
  background-color: var(--primary-900);
  transition: 0.3s ease;
  position: relative;
  z-index: 13;
}

@media (min-width: 430px) {
  .hamburger.active .bar {
    background-color: white;
  }
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-wrapper {
  background-color: white;
  width: 50%;
  height: 100vh;
  padding: 15px 30px;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 12;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: scroll;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.header-wrapper.active {
  left: 0;
}

@media (max-width: 768px) {
  .header-wrapper {
    width: 75%;
  }
}

@media (max-width: 430px) {
  .header-wrapper {
    width: 100%;
  }
}

.overlay {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.9) !important;
  z-index: 3;
  display: none;
  pointer-events: none;
  bottom: 0;
}

.overlay.active {
  display: block;
  pointer-events: all;
}

.mobile-header nav ul li {
  padding: 10px 0;
}

.mobile-header nav ul li a {
  color: black;
  display: block;
}

.mobile-header .dropdown-icon i {
  font-size: 27px;
}

/* MOBIL HEADER END */

/* MEGA MENU START */

.mega-menu {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  top: 90%;
  left: 0;
  right: 0;
  padding: 20px;
  background: white;
  z-index: 999;
  box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.mega-menu li {
  padding: 0;
  color: var(--primary-900);
}

.mega-menu li a {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--primary-900);
}

li:hover > .mega-menu {
  opacity: 1;
  transform: scaleY(1);
  pointer-events: auto; /* açılınca tıklanabilir */
}

li.mega-menu-col {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mega-menu-child {
  opacity: 0;
  pointer-events: none; /* tıklanabilir olmasın */
  position: absolute; /* mega menu için */
  left: 0;
  top: 100%;
  background: white;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  left: 0;
  right: 0;
  padding: 20px;
  background: white;
}

.mega-menu-col:hover .mega-menu-child,
.mega-menu-child.active {
  opacity: 1;
  pointer-events: auto; /* hover ile tıklanabilir olsun */
}

.category-title {
  position: relative;
}

.category-title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 0px;
  background-color: var(--primary-900);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.category-title:hover::after {
  width: 100%;
}
.mega-menu-col.active-col .category-title {
  font-weight: 600;
}
.mega-menu-col.active-col .category-title::after {
  width: 100%;
}
.mega-menu-desc {
  font-size: 14px;
  text-align: center;
}
/* MEGA MENU END */

/* HERO START */

.hero {
  padding: 0;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-img img {
  width: 100%;
}

.desktop-hero .swiper-button-prev,
.desktop-hero .swiper-button-next {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.desktop-hero .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 18px;
  color: white;
}

.desktop-hero .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 18px;
  color: white;
}

@media (min-width: 992px) {
  .desktop-hero {
    display: block;
  }

  .mobile-hero {
    display: none;
  }
}

@media (max-width: 992px) {
  .desktop-hero {
    display: none;
  }

  .mobile-hero {
    display: block;
  }
}

.mobile-hero .navigation-container {
  margin-top: 0px;
  transform: translateY(-30px);
  z-index: 3;
}

.mobile-hero .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  transform: rotate(180deg);
}

.mobile-hero .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  transform: rotate(180deg);
}

/* HERO END */

/* CERTIFICATE END */

/* ROBOTS SECTION START */

.robots-section {
  background-color: var(--primary-color);
}

.robots-section .form-select {
  display: none;
}

@media (max-width: 992px) {
  .robots-section .route-btn {
    display: none;
  }

  .robots-section .form-select {
    display: block;
  }
}

.link-wrapper {
  margin-bottom: 125px;
}

.link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  color:black;
  border-radius: 30px;
  background-color: white;
  transition: all 0.3s ease;
}

.link-item:hover {
  background-color: black;
  color: white;
}

@media (max-width: 992px) {
  .link-item {
    margin-bottom: 15px;
  }
}

.robots-page {
  margin-top: 80px;
}

/* ROBOTS SECTION END */

/* Robo-box Start */
.robo-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-900);
  border-radius: 12px;
  overflow: visible;
  text-decoration: none;
  padding: 155px 65px 20px 65px;
  margin-bottom: 125px;
}

@media (max-width: 992px) {
  .robo-box {
    height: auto;
    margin-bottom: 125px;
  }
}

.robo-box img {
  position: absolute;
  top: -99px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: auto;
  z-index: 2;
}

.robo-box .content-box {
  text-align: center;
}

.robo-box .content-box .title {
  color: var(--primary-100);
  font-size: 22px;
  margin-bottom: 25px;
}

.robo-box .content-box .short-text {
  color: var(--primary-500);
  font-size: 13px;
  margin-bottom: 15px;
}

.btn {
  background-color: var(--primary-900);
  color: var(--primary-100);
  font-size: 12px;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.btn:hover {
  background-color: var(--primary-100);
  color: var(--primary-900);
  font-size: 12px;
  transition: all 0.3s ease;
}

@media (max-width: 820px) {
  .tab-content .row > div {
    margin-bottom: 150px;
  }
}

@media (max-width: 576px) {
  .tabs {
    margin-bottom: 145px;
  }

  .robots-section {
    background-color: var(--primary-color);
    margin-bottom: 0px;
  }
}
/* Robo-box End */

/* WHATSAPP START */
.fixedButton {
  position: fixed;
  bottom: 65px;
  right: -115px;
  flex-direction: column;
  align-items: center;
  z-index: 9;
  transition: none;
  max-width: 100%;
}

@media (max-width: 992px) {
  .fixedButton {
    display: none;
  }
}

.fixedButton .fixedButton-icon {
  position: relative; /* pulse efekti iÃƒÂ§in gerekli */
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4ac959;
  border-radius: 50%;
  font-size: 30px;
  color: var(--primary-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}

.fixedButton .fixedButton-icon::before {
  content: "";
  position: absolute;
  top: 51%;
  left: 49%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(74, 201, 89, 0.5); /* YarÃ„Â± Ã…Å¸effaf yeÃ…Å¸il */
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.fixedButton .fixedButton-icon:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.fixedButton-content {
  --fixedButton-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  --fixedButton-bg-c: var(--primary-100);
  width: 190px;
  padding: 10px 10px;
  box-shadow: var(--fixedButton-shadow);
  margin-bottom: 20px;
  border-radius: 18px;
  position: relative;
  background-color: var(--fixedButton-bg-c);
  color: var(--primary-900);
  font-weight: 700;
  line-height: initial;
  font-size: 14px;
  margin-right: 38px;
  opacity: 0;
  right: 82px;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}

.fixedButton-content::before {
  --offset: 10px;
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%);
  bottom: calc(0px - var(--offset));
  width: 0;
  height: 0;
  border-left: var(--offset) solid transparent;
  border-right: var(--offset) solid transparent;
  border-top: var(--offset) solid var(--fixedButton-bg-c);
  filter: drop-shadow(var(--fixedButton-shadow));
}

.fixedButton .close {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  width: 25px;
  font-size: 15px;
  background-color: rgba(34, 34, 34, 0.7);
  color: var(--primary-100);
  border-radius: 50%;
  transform: translate(50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

/* Hover Durumu */
.fixedButton:hover .fixedButton-content {
  opacity: 1;
  transform: translateY(0);
}

.fixedButton:hover .close {
  opacity: 1;
}

/* WHATSAPP END */

/* SLIDER START */

.slider {
  padding: 0;
  overflow: hidden;
  margin-bottom: 100px;
}

.imageSlider {
  width: 100%;
  height: 400px;
  overflow: visible;
}

.swiper-slide {
  transition: transform 0.3s;
  overflow: hidden;
}

.slider-box {
  display: block;
  height: 100%;
  overflow: hidden;
}

.slider-box img {
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.swiper-slide:first-child .slider-box img {
  clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.swiper-slide:last-child .slider-box img {
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-box:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .imageSlider {
    height: 300px;
  }

  .slider-box img {
    clip-path: inset(0 0 0 0);
  }
  .swiper-slide:first-child .slider-box img {
    clip-path: inset(0 0 0 0);
  }

  .swiper-slide:last-child .slider-box img {
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 576px) {
  .slider {
    padding: 0;
    overflow: hidden;
    margin-bottom: 0px;
  }
}

/* SLIDER END */

/* FEATURED-ROBO START */
.featured-slider {
  position: relative;
}

.robotsSlider {
  margin-top: 130px;
  overflow: visible !important;
}

.side-bg {
  position: absolute;
  top: 35%;
  width: 30%;
  height: 60%;
  background-color: var(--primary-100);
  z-index: 0;
}

.left-bg {
  left: 0;
  border-bottom-right-radius: 200px;
  border-top-right-radius: 200px;
}

.right-bg {
  right: 0;
  border-bottom-left-radius: 200px;
  border-top-left-radius: 200px;
}

.featured-slider .swiper-button-next,
.featured-slider .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 65%);
}

.featured-slider .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.featured-slider .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  color: black;
  font-size: 32px;
}

.featured-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.featured-roboBox img {
  max-width: 100%;
  height: auto;
  width: 300px;
  object-fit: cover;
}

.featured-roboBox .content-box .title {
  color: var(--primary-100);
  text-align: center;
  font-size: 28px;
  font-weight: 400;
}

.featured-slide {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
  transform: scale(1);
}

.robotsSlider .swiper-slide-active {
  opacity: 1 !important;
  transform: scale(1.7) !important;
  z-index: 2;
}

.featured-roboBox .title {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swiper-slide-active .featured-roboBox .title {
  opacity: 1;
  font-size: 20px;
}

.side-bg.center-bg {
  display: none; /* Başlangıçta gizli */
}

@media (max-width: 820px) {
  .left-bg,
  .right-bg {
    display: none;
  }

  .side-bg.center-bg {
    display: block;
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 45%;
    background-color: var(--primary-100);
    border-radius: 50%;
    z-index: 0;
  }
}

/* FEATURED-ROBO END */

/* VIDEO SECTION START */

.video-background {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -2;
}

.videos-section {
  padding: 175px 0 70px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary-100);
  font-family: "Nunito Sans", sans-serif;
}

.video-title {
  font-size: 50px;
  padding: 50px 70px 10px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .video-title {
    font-size: 22px !important;
    padding: 0px;
  }
}

.video-box {
  display: inline-block;
  position: relative;
}

.video-box img {
  width: 100%;
}

.video-content {
  position: absolute;
  left: 30px;
  top: 60%;
  transform: translateY(-50%);
  z-index: 3;
}

@media (max-width: 992px) {
  .video-content {
    left: 10px;
  }

  .video-content .text p {
    font-size: 14px;
  }
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-100);
  border-radius: 50%;
  animation: pulse 1.5s infinite; /* animasyonu ekledik */
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* VIDEO SECTION END */

/* ABOUT SECTION START */

.about-section .about-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-section .image-wrapper img {
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.about-section .about-box .short-title {
  color: var(--primary-100);
  font-size: 12px;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.about-section .about-box .title {
  color: var(--primary-100);
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 30px;
}

.about-section .about-box .text {
  color: var(--primary-100);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}

.about-section .btn-list {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-section .video-btn {
  color: var(--primary-100);
  background-color: var(--primary-900);
  padding: 15px 60px;
  font-size: 20px;
  border-radius: 5px;
}

.about-section .video-btn i {
  margin-right: 10px;
}

@media (max-width: 1024px) {
  .about-section .about-box .title {
    font-size: 43px;
  }

  .about-section .about-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
  }

  .about-section .about-box .text {
    margin-bottom: 25px;
  }
}

@media (max-width: 992px) {
  .about-section .about-box {
    padding: 10px 0 10px 0;
  }

  .about-section .about-box .title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .about-section .btn-list {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 10px 5px;
  }
}

/* ABOUT SECTION END */

/* CTA START */
.cta-section {
  background: linear-gradient(to right, #0a364c, var(--primary-color));
  position: relative;
  height: 300px;
}

@media (max-width: 992px) {
  .cta-section {
    height: auto;
  }
}

.cta-section .cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section .cta-box .top {
  color: var(--primary-100);
  font-size: 30px;
}

.cta-section .cta-box .bottom {
  color: var(--primary-100);
  font-size: 36px;
  font-weight: 600;
}

.cta-section .image-crop {
  display: flex;
  justify-content: flex-end;
  transform: translateY(-80px);
}

@media (max-width: 992px) {
  .cta-section .image-crop {
    transform: translateY(0px);
  }
}

/* CTA END */

/* HOME BLOGS START */

.blogs-section {
  position: relative;
}

.blogs-section .absolute-left {
  height: 430px;
  position: absolute;
  left: 70px;
  bottom: 120px;
}

@media (max-width: 992px) {
  .blogs-section .absolute-left {
    display: none;
  }
}

.section-title {
  position: relative;
  font-size: 35px; /* isteÄŸe gÃ¶re */
  color: var(--primary-100); /* baÅŸlÄ±k rengi */
  margin-bottom: 50px;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px; /* Ã§izgi ile yazÄ± arasÄ± mesafe */
  width: 30%;
  height: 1px; /* Ã§izgi kalÄ±nlÄ±ÄŸÄ± */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  border-radius: 2px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-box .content-box .title {
  color: var(--primary-100);
  margin-block: 15px;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.blog-box {
  position: relative;
  display: block;
  border-radius: 16px;
  padding: 15px;
  overflow: hidden;
}

.blogs-section .animated-border-box,
.blogs-section .animated-border-box-glow {
  z-index: 0;
  border-radius: 16px;
}

.blogs-section .animated-border-box-glow {
  overflow: hidden;
  filter: blur(20px);
}

.blogs-section .animated-border-box:before,
.blogs-section .animated-border-box-glow:before {
  content: "";
  z-index: -2;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  position: absolute;
  width: 99999px;
  height: 99999px;
  background-repeat: no-repeat;
  background-position: 0 0;
  /*border color, change middle color*/
  background-image: conic-gradient(
    rgba(0, 0, 0, 0),
    white,
    rgba(0, 0, 0, 0) 25%
  );
  /* change speed here */
  animation: rotate 4s linear infinite;
}

.blogs-section .animated-border-box:after {
  content: "";
  position: absolute;
  z-index: -1;
  /* border width */
  left: 5px;
  top: 5px;
  /* double the px from the border width left */
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  /*bg color*/
  background: #292a2e;
  /*box border radius*/
  border-radius: 10px;
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}

.blogSlider {
  position: relative;
  left: 35%;
}

@media (max-width: 992px) {
  .blogSlider {
    left: 0;
  }
}

.navigation-container {
  position: relative;
  display: flex;
  justify-content: center; /* Ortalar */
  align-items: center;
  gap: 10px; /* Butonlar arası boşluk */
  margin-top: 60px;
}

.navigation-container .swiper-button-prev,
.navigation-container .swiper-button-next {
  position: static; /* Swiper’in default absolute pozisyonunu iptal et */
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.navigation-container .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 18px;
  color: white;
}

.navigation-container .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 18px;
  color: white;
}

/* HOME BLOGS END */

/* REFERENCES START */
.referances {
  background-color: white;
  padding: 80px 0 160px 0;
}

.referances .container {
  position: relative;
}

.referances .section-title {
  color: var(--primary-900);
}

.referances .section-title::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 1),
    rgba(255, 255, 255, 0)
  );
}

.referancesSlider {
  padding: 50px 0;
}

.referancesSlider .swiper-wrapper {
  display: flex;
  align-items: center;
}

.referances-box {
  padding: 5px;
  border: 1px solid var(--primary-color);
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.referances-box img {
  max-width: 175px;
  object-fit: contain;
}

.referances .swiper-button-next,
.referances .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 65%);
  border-radius: 5px;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.referances .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -50px);
  transform: rotate(180deg);
}

.referances .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -50px);
  transform: rotate(180deg);
}

.referances .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.referances .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 20px;
  color: white;
}

.referances .navigation-container {
  margin-top: 0;
}

/* REFERENCES END */

/* FORM SECTION START */
.form-section .section-title {
  color: var(--primary-900);
}

@media (max-width: 992px) {
  .form-section .section-title {
    margin-bottom: 15px;
  }
}

.form-section .short-text {
  color: var(--primary-900);
  font-size: 14px;
  text-align: center;
  margin: -40px auto 40px auto;
  width: 50%;
}

@media (max-width: 992px) {
  .form-section .short-text {
    width: 100%;
    margin: 0 0 15px 0;
  }
}

.section-background {
  background-color: var( --form-background);
  padding: 60px;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .section-background {
    padding: 20px;
  }
}


 .form input {
  margin-bottom: 15px;
  background: var(--form-input-background);
  border: none;
}

@media (max-width: 992px) {
 .form input {
    margin-bottom: 0px;
  }
}
 .form textarea {
  background: var(--form-input-background);
  border: none;
}

@media (max-width: 992px) {
 .form textarea {
    margin-bottom: 0;
  }
}
 .form label {
  color: var(--form-text-color);
  margin-bottom: 15px;
  font-size: 12px;
}

@media (max-width: 992px) {
 .form label {
    margin-bottom: 0px;
  }
}

.home-form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.home-form-btn button {
  padding: 5px 15px;
  font-size: 14px;
  background-color: var(--form-btn-bg-color);
  color: var(--form-btn-text-color-100);
  border: none;
  border-radius: 5px;
}

@media (max-width: 992px) {
  .home-form-btn button {
    padding: 15px 0;
    width: 100%;
  }
}

/* FORM SECTION END */

/* CTA BOTTOM START */
.cta-bottom-section {
  background: linear-gradient(to right, #0a364c, var(--primary-color));
  position: relative;
}

@media (max-width: 992px) {
  .cta-bottom-section {
    height: auto;
    margin-top: 0px;
    padding: 0 0 80px 0;
  }
}

.cta-bottom-section .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-bottom-section .image-box {
  width: 100%;
  position: relative;
  left: 0;
  z-index: 1;
}

.cta-bottom-section .image-box img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(-120px);
}

@media (max-width: 992px) {
  .cta-bottom-section .image-box img {
    transform: translateY(0px);
  }
}

.cta-bottom-section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  z-index: 2;
  top: 27%;
  left: 40%;
  position: absolute;
}

@media (max-width: 992px) {
  .cta-bottom-section .box {
    position: static;
    width: 100%;
  }
}

.cta-bottom-section .box .top {
  color: var(--primary-100);
  font-size: 30px;
}

@media (max-width: 992px) {
  .cta-bottom-section .box .top {
    text-align: center;
  }
}

.cta-bottom-section .box .bottom {
  color: var(--primary-100);
  font-size: 33px;
  font-weight: 600;
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .cta-bottom-section .box .bottom {
    text-align: center;
  }
}

.cta-bottom-section .box .btn-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cta-bottom-section .box .btn-list a {
  background-color: var(--primary-100);
  padding: 10px 25px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  transition: box-shadow 0.3s ease;
}

@media (max-width: 992px) {
  .cta-bottom-section .box .btn-list a {
    padding: 10px;
  }
}

.cta-bottom-section .box .btn-list a .gradient-text {
  background-image: linear-gradient(to right, #0a364c, var(--primary-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.cta-bottom-section .box .btn-list a i {
  color: var(--primary-color);
}
/* CTA END */

/* FOOTER START */

footer {
  padding: 80px 0;
}

@media (max-width: 992px) {
  footer {
    padding: 30px 0 75px 0;
  }
}
.footer-logo {
  width: 120px;
}

@media (max-width: 992px) {
  .footer-logo {
    width: 200px;
    margin-bottom: 30px;
  }
}

.icon-list ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

@media (max-width: 992px) {
  .icon-list ul {
    justify-content: flex-start;
  }
}

.icon-list ul li {
  width: 40px;
  height: 40px;
  background: var(--primary-900);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-list ul li a {
  color: var(--primary-100);
  border-radius: 50%;
}

.footer-top {
  border-bottom: 1px solid var(--primary-500);
  padding: 20px 0;
}

.footer-top .row {
  display: flex;
  align-items: center;
}

.footer-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 100px;
}

@media (max-width: 992px) {
  .footer-right {
    justify-content: flex-start;
    gap: 50px;
  }
}

.footer-right .box .title,
.footer-left .box .title {
  color: var(--primary-100);
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid white;
}

.footer-bottom {
  padding: 30px 0;
}

.footer-right .box ul li {
  padding-bottom: 10px;
}

.footer-right .box ul li a {
  color: var(--primary-100);
  font-size: 13px;
}

.footer-left {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

@media (max-width: 992px) {
  .footer-left {
    margin-bottom: 30px;
  }
}

.footer-left .box {
  padding: 10px 0;
  width: auto;
}

.footer-left .box a {
  color: var(--primary-100);
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-left .box:last-child {
  width: 100%;
}

/* FOOTER END */

/* CONTACT START */
.contact-image {
  max-width: 100%;
  position: relative;
  object-fit: cover;
  height: 620px;
  width: 550px;
  border-radius: 25px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.form-control {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  background: var(--form-input-background);
}

textarea {
  width: 100%;
  padding: 10px;
  border-radius: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border: none;
}

.google-maps {
  padding: 20px;
  margin-bottom: 125px;
}

.contact-left .title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 50px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-block: 30px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  background-color: var(--form-background);
  border-radius: 8px;
  padding: 15px;
}

.contact-box div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: var(--form-text-color);
}

.contact-box div span {
  text-align: center;
}

.contact-box i {
  font-size: 25px;
  color: var(--form-text-color);
}

.contact-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--form-background);
  padding: 10px 20px;
  border-radius: 8px;
}

.contact-page .contact-column {
  padding: 50px;
}

.contact-column .short-title {
  font-size: 15px;
  color: var(--form-text-color);
  font-weight: 500;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
}

.contact-column .title {
  font-size: 25px;
  font-weight: 600;
  color: var(--form-text-color);
  margin-bottom: 15px;
}

.contact-btn {
  display: inline-flex;
  background-color: transparent;
  color: var(--primary-100);
  border-radius: 20px;
  padding: 10px 40px;
  border: 2px solid var(--primary-900);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--primary-100);
  color: var(--primary-900);
}

.captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-short-text {
  color: var(--primary-100);
  font-size: 16px;
  padding: 15px 25px;
}

.contact-column .form .form-btn {
  background:var(--form-btn-bg-color);
  border: none;
  color: var(--form-btn-text-color);
  padding: 10px;
  border-radius: 10px;
}

.form label {
  color: var(--form-text-color);
}

.form-row {
  display: flex;
  align-items: center;
}

/* CONTACT END */

/* BREADCRUMB START */
.breadcrumb-container {
  color: var(--primary-100);
  background: var(--primary-900);
  z-index: 1;
  padding: 225px 0 30px 0;
}

@media (max-width: 992px) {
  .breadcrumb-container {
    padding: 30px 0px;
  }
}

.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.breadcrumb-wrapper ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 450px) {
  .breadcrumb-wrapper ul {
    gap: 10px;
  }
}

.breadcrumb-wrapper ul li {
  position: relative;
}

.breadcrumb-wrapper ul li a {
  font-weight: 600;
}

.breadcrumb-wrapper ul li:not(:last-child)::after {
  position: absolute;
  content: "/";
  right: -15px;
}

@media (max-width: 450px) {
  .breadcrumb-wrapper ul li:not(:last-child)::after {
    right: -8px;
  }
}

/* BREADCRUMB END */

/* Robo-category-box Start */
.robo-category-box {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #1a1a1a, #222);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--primary-100);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}

.robo-category-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.8);
}

.robo-category-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.robo-category-box .content-box {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.robo-category-box .content-box .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-100);
}

/* Robo-category-box End */

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--primary-100);
  margin-bottom: 40px;
}


.cta-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  color: var(--primary-100);
  margin: 60px 0;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  color: var(--primary-100);
  background-color: #007bff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #007bff;
}

/* SOLUTION START */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.solution-box {
  background-color: white;
  color: black;
  padding: 25px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.solution-box:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: black;
  color: white;
}

@media (max-width:992px) {
  .solution-box:hover {
    transform: translateY(0);
  }
}


.solution-box .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.solution-box .text {
  font-weight: 400;
  font-size: 12px;
  text-align: center;
}
/* SOLUTON END */

@media (max-width: 576px) {
  .cta-section .cta-box .bottom {
    color: var(--primary-100);
    font-size: 25px;
    font-weight: 600;
  }

  .cta-section .cta-box {
    width: 100%;
  }
}

/* PRODUCT DETAIL START */
@media (max-width: 992px) {
  .product-detail {
    padding: 80px 0 0 0;
  }
}

.gallerySlider1 {
  margin-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.gallerySlider1 img {
  border-radius: 8px;
  width: 100%;
}

@media (max-width: 992px) {
  .gallerySlider2 {
    margin-bottom: 30px;
  }
}

.gallerySlider2 .gallery-box {
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.gallerySlider2 .gallery-box img {
  border-radius: 8px;
}

.product-detail-right {
  color: var(--primary-100);
}

.styled-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
  font-size: 15px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.styled-table thead {
  background: #f5f5f5;
}

.styled-table th,
.styled-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #ddd;
  color: #333;
}

.styled-table th {
  font-weight: 600;
}

.styled-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.styled-table tbody tr:hover {
  background: #f0f7ff;
}

.product-info-wrapper {
  color: var(--primary-100);
}

.product-info-title {
  font-size: 32px;
  font-weight: 600;
}

.product-info-img {
  border-radius: 8px;
}

.product-detail-desc {
  padding: 0px 0px 60px 0;
  color: var(--primary-100);
}

.faq-container {
  margin-top: -30px;
  padding: 0 0 80px 0;
}

.faq-item {
  margin-bottom: 15px;
  color: var(--primary-100);
  border: 1px solid var(--primary-100);
  padding: 10px;
  border-radius: 8px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: bold;
}

.faq-question i {
  font-size: 24px;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--primary-100);
}

/* ikon dönüş animasyonları */
@keyframes rotateOpen {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateClose {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.form-scroll {
  margin-top: 30px;
  width: 100%;
  display: inline-block;
  background-color: var(--primary-900);
  padding: 15px;
  text-align: center;
}

.product-offer-form .form label {
  color: white !important;
}


/* PRODUCT DETAIL END */

/* ABOUT US PAGE START */

.about-us-page {
  color: var(--primary-100);
  padding: 80px 0 125px 0;
}

/* ABOUT US PAGE END */

/* FOOTER STICKY MENU START */

.footer-sticky {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: black;
  position: fixed;
  z-index: 10;
  width: 100%;
  bottom: 0;
  padding: 0 0.5rem 1.15rem 0.5rem;
  border-top-left-radius: 2.15rem;
  border-top-right-radius: 2.15rem;
  border-top: 6px solid var(--primary-100);
}

@media (max-width: 992px) {
  .footer-sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer-sticky .sticky-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.footer-sticky .sticky-box .icon {
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}

.footer-sticky .sticky-box .text {
  font-size: 14px;
  color: white;
  text-align: center;
}

@media (max-width: 568px) {
  .footer-sticky .sticky-box .text {
    font-size: 10px;
  }
}

.footer-sticky .top-box .icon::before {
  content: "";
  position: absolute;
  height: 66px;
  width: 66px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
  content: "";
  position: absolute;
  height: 56px;
  width: 56px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box {
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem);
}
.footer-sticky .top-box .text {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  text-align: center;
}

.footer-sticky .top-box .icon {
  background: var(--primary-900);
  border-radius: 50%;
  position: relative;
}

/* FOOTER STICKY BUTTON END */

/* BLOG PAGE START */

.blogs-page {
  padding: 80px 0 125px 0;
}

.blogs-page .content-wrapper {
  color: var(--primary-100);
}

.blogs-page .contact-column {
  height: 100%;
  padding: 30px;
}

/* BLOG PAGE END */

/* CATEGORY START */

.category {
  padding: 125px 0 80px 0;
}

/* CATEGORY END */
