body {

  font-family: Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  line-height: 1.5;

  letter-spacing: 0.5px;

  color: rgb(110, 110, 110);

}





p {

  font-size: 1.2rem;

}



.custom-logo-link img {

  max-width: 200px;

  transition: max-width 0.3s ease;

}



.nav-menu {

  display: flex;

  flex-direction: row;

  gap: 20px;

  list-style: none;

}



.nav-menu a {

  color: #a3bfc1;

  text-decoration: none;

  font-weight: 400;

  font-size: 1.2rem;

}



.menu-toggle {

  display: none;

}



.menu-toggle .icon-close {

  display: none;

}



.menu-toggle.is-active .icon-menu {

  display: none;

}



.menu-toggle.is-active .icon-close {

  display: block;

}

/* Home page specific styles */

.home .menu-toggle {

  color: #ffffff;

}

.home .entry-content:last-child{
      margin-bottom: -50px;
}



header {

    padding-top: 10px;

    padding-bottom: 10px;

    transition: padding 0.3s ease;

}



.header-wrapper {

  position: sticky;

  top: 0;

  z-index: 1000;

  transition: background-color 0.3s ease, box-shadow 0.3s ease;

}



.header-wrapper.is-sticky {

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

}



.header-wrapper.is-sticky header {

  padding-top: 4px;

  padding-bottom: 4px;

  transition: padding 0.3s ease;

}



.header-wrapper.is-sticky .custom-logo-link img {

  max-width: 130px;

  transition: max-width 0.3s ease;

}



.home .header-wrapper {

  background-color: rgba(0, 0, 0, 0);

  position: absolute;

  width: 100%;

  z-index: 1000;

}



.home .header-wrapper.is-sticky {

  position: fixed;

  background-color: #00496b;

}



.home .entry-header {

  display: none;

}



.banner {

  position: relative;
  background-color: #003e62;

}



.banner-text {

  display: flex;

  flex-direction: column;

  justify-content: center;

  color:#c8c8c8;

  

}



.banner-text h1 {

  font-weight: 200;

  display: flex;

  flex-direction: column;

}



@media (max-width: 768px) {

  .banner-inner.cr-vh-100 {

    height: auto;

    min-height: unset;

    padding: 100px 20px;

  }



  .banner-inner .cr-w-75 {

    width: 92%;

  }



  .banner-inner .cr-col-6 {

    width: 100%;

  }



  /* hide the image on mobile — text is the priority */

  .banner-inner .cr-col-6:last-child {

    display: none;

  }



  .banner-text h1.cr-text-2xl {

    font-size: 1.75rem;

    line-height: 2.4rem;

  }



  .banner-text p {

    font-size: 1rem;

  }

}



ul#primary-menu {

  margin: 0;

}



.banner-inner {

  background: url('../images/creatovia-bg.webp') no-repeat center center;

  background-size: cover;

}



.force-full-width {

    width: 100vw;

    position: relative;

    left: 50%;

    right: 50%;

    margin-left: -50vw;

    margin-right: -50vw;

}

.force-full-width > * {

    width: 75%;

    margin: 0 auto;

}



.services-block img{

  margin-bottom:35px;

  opacity:0.3;

}



.services-block img{

  margin-bottom:35px;

  opacity:0.5;

}







/* web development post type */

.web-dev-item {

    display: flex;

    gap: 40px;

    align-items: center;

    margin-bottom: 60px;

    background-color: #ffffff;

    padding: 20px;

    border-radius: 20px;

    box-shadow: 0 0 10px #b0afaf;

}



.web-dev-image {

    flex: 1;

}



.web-dev-image img {

    width: 100%;

    height: auto;

    display: block;

    border-radius: 10px;

    padding: 10px;

    box-shadow: 0 0 5px #adadad;

}



.web-dev-content {

    flex: 1;

}



.web-dev-title {

    font-size: 28px;

    margin-bottom: 15px;

}



.web-dev-title a {

    text-decoration: none;

    color: inherit;

}



.web-dev-text {

    font-size: 16px;

    line-height: 1.7;

}



/* Footer */

.site-footer__inner {

    display: flex;

    flex-direction: column;

    align-items: center;

}



/* 404 page */

.error-404-wrapper {

    min-height: 70vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 60px 20px;

    text-align: center;

    background: #fbfbfb;

}



.error-404-inner {

    max-width: 600px;

}



.error-code {

    font-size: 120px;

    font-weight: 800;

    color: #36c3e8;

    line-height: 1;

    margin-bottom: 20px;

}



.error-title {

    font-size: 32px;

    margin-bottom: 10px;

    color: #035b78;

}



.error-description {

    font-size: 16px;

    color: #6b6b6b;

    margin-bottom: 30px;

}



.error-search input[type="search"] {

    width: 100%;

    padding: 12px 15px;

    border: 1px solid #ddd;

    border-radius: 6px;

    margin-bottom: 20px;

}



.error-actions {

    display: flex;

    gap: 15px;

    justify-content: center;

    flex-wrap: wrap;

}



.btn-primary,

.btn-secondary {

    padding: 12px 20px;

    text-decoration: none;

    border-radius: 6px;

    font-weight: 600;

    display: inline-block;

}



.btn-primary {

    background: #36c3e8;

    color: #fff;

}



.btn-primary:hover {

    background: #035b78;

}



.btn-secondary {

    background: transparent;

    border: 2px solid #36c3e8;

    color: #36c3e8;

}



.btn-secondary:hover {

    background: #36c3e8;

    color: #fff;

}



/* Mobile */

@media (max-width: 768px) {

    .web-dev-item {

        flex-direction: column;

        gap: 20px;

    }



    .menu-toggle {

    display: block;

    background: none;

    border: none;

    color: #ffffff;

    cursor: pointer;

    position: relative;

    z-index: 9999;

    padding: 4px;

    line-height: 0;

  }



  .nav-menu,
  #primary-menu {

    position: fixed;

    inset: 0;

    margin: 0;



    background: #ffffff;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 0;



    display: none; /* hidden by default */

    overflow-y: auto;



    box-shadow: none;

    z-index: 1050;

  }



  .nav-menu li,
  #primary-menu li {

    padding: 18px 20px;

    border-bottom: 1px solid #eee;

    text-align: center;

    width: 100%;

    max-width: 320px;

  }



  .nav-menu a,
  #primary-menu a {

    font-size: 20px;

    color: #035b78;

  }



  /* when menu is active */

  .nav-menu.active,
  #primary-menu.active {

    display: flex;

  }
}



body.no-scroll {

  overflow: hidden;

}





/* graphic design post type */





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

   GRAPHIC DESIGN MASONRY GRID

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



.graphic-design-grid {

    max-width: 1200px;

    margin: 0 auto;

}



/* Let Masonry control layout properly */

.graphic-item {

    width: 33.333%;

    box-sizing: border-box;

    overflow: hidden;

}



.graphic-thumb {

    width: 100%;

    display: block;

    transition: transform 0.35s ease;

}



/* Hover effect */

.graphic-item:hover .graphic-thumb {

    transform: scale(1.03);

}





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

   LITY LIGHTBOX FIX

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



.lity {

    z-index: 999999;

}





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

   CLEAR FIX (IMPORTANT for Masonry)

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



.graphic-design-grid::after {

    content: "";

    display: block;

    clear: both;

}





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

   TABLET

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



@media (max-width: 768px) {



    .graphic-item {

        width: 50% !important;

        padding: 8px;

    }

}





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

   MOBILE

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



@media (max-width: 480px) {



    .graphic-item {

        width: 100% !important;

        padding: 6px;

    }

}









/* Logo Design */



.logo-design-grid {

    display: grid !important;

    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;

    gap: 20px !important;

    max-width: 1100px;

    margin: 0 auto;

}



/* Logo item center alignment */

.logo-item {

    display: flex;

    justify-content: center;

    align-items: center;

}



/* Thumbnail constraint */

.logo-thumb {

    max-width: 300px;

    width: 100%;

    height: auto;

    object-fit: contain;

    background-color: #fff;

    box-shadow: 0 0 10px #bcbcbc;

    overflow: hidden;

    padding: 10px;

    position: relative;

    transition: transform 0.35s ease, background-color .5s ease-in-out;

}



.logo-thumb:hover {

    transform: scale(1.05);

}





.tab-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    padding: 20px 0 30px;

    margin-bottom: 10px;

    position: sticky;

    top: var(--header-height, 0px);

    z-index: 100;

    background: #fff;

}



.tab-btn {

    padding: 12px 28px;

    border: 1px solid #035b78;

    border-radius: 6px;

    background: transparent;

    color: #035b78;

    font-size: 16px;

    cursor: pointer;

    transition: background-color 0.3s ease, color 0.3s ease;

}



.tab-btn:hover {

    background: #035b78;

    color: #fff;

    opacity: 0.85;

}



.tab-content {

    display: none;

}



.tab-content.active {

    display: block;

}



.tab-btn.active {

    background: #035b78;

    color: #fff;

}



/* WP form styling */

.wpforms-container{

  width:100%;

  max-width:600px;

  margin:0 auto;

}



.cr-phone-mask .wpforms-field-limit-text{

  display:none;



}


/* contact page specific styles */

.page-id-12 .entry-header {
    text-align: center;
}

/* footer */

footer#colophon {
    background-color: #ebebeb;
    margin-top: 50px;
    padding: 30px 10px;
}


/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

/* Spinner */
.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #e0e0e0;
  border-top: 5px solid #36c3e8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



@media (max-width: 768px) {

    .tab-buttons {

        gap: 10px;

        padding: 16px 0 24px;

        max-width: 95%;
        margin: 0 auto 10px;

        padding: 20px;

    }



    .tab-btn {

        padding: 10px 18px;

        font-size: 14px;

    }

}



@media (max-width: 480px) {

    .tab-buttons {

        flex-direction: column;

        align-items: stretch;

        gap: 8px;

    }



    .tab-btn {

        width: 100%;

        text-align: center;

    }

}