
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }

  body{
    background-color: #fff;
  }
  
.navbar {
    width: 100%;
    padding: 20px 0;
    background: #fff;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    width: 1260px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 167px;
    height: 37px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    height: 50px;
}

.menu > ul {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.menu > ul > li {
    position: relative;
}

.menu > ul > li > a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    display: inline-block;
    transition: 0.3s;
    letter-spacing: 0.3px;
}

.menu > ul > li > a:hover {
    color: #ffb400;
}

.menu ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 15px 0;
    min-width: 250px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    list-style: none;
    z-index: 999;
    border-radius: 8px;
    margin-top: 10px;
}

.menu ul li:hover > ul {
    display: block;
}

.menu ul li ul li a {
    display: block;
    padding: 12px 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
    font-size: 14px;
}

.menu ul li ul li a:hover {
    background: #ffb400;
    color: #fff;
    padding-left: 30px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 50px;
}
.language-dropdown {
    position: relative;
    width: 90px;
    font-family: Arial, sans-serif;
    z-index: 2000;
}

.lang-selected {
    background: #1947cd;
    width: 40px;
    height: 40px;
    color: white;
    padding: 13px 0;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.lang-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 10px;
    background: white;
    padding: 10px 3px;
    display: none;           
    flex-direction: column;
    gap: 3px;
    z-index: 3000;
    width: 48px;
    height: 94px;
}

.lang-options.show {
    display: flex;           
}


.lang-option.active {
    background: #1947cd;
    color: white;
    padding: 10px 0;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    width: 40px;
    height: 40px;
}

.lang-option {
    background: white;
    color: #1947cd;
    padding: 10px 0;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    border: 4px solid #1947cd;
    cursor: pointer;
    transition: 0.3s;
    width: 40px;
    height: 40px;
}

.lang-option:not(.active):hover {
    background: #f0f0f0;
}

.header-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d1d1d;
    color: #fff;
    padding: 10px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 40px;
    letter-spacing: 0.5px;
}

.header-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;       
    height: 28px;
    background: #FFB400;
    clip-path: polygon(0 0, 100% 0, 0 100%); 
    transition: all 0.3s ease;
}

.header-btn a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;       
    height: 28px;
    background: #FFB400;
    clip-path: polygon(100% 0, 100% 100%, 0 100%); 
    transition: all 0.3s ease;
}


.header-btn a:hover::before {
    width: 50%;
}

.header-btn a:hover::after {
    width: 50%;
}

.header-btn a:hover {
    background: #FFB400;
    color: #1d1d1d;
}

.header-btn a span {
    position: relative;
    z-index: 1;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.menu-close {
    display: none;
}

.menu-logo {
    display: none;
}

.menu-social {
    display: none;
}

.menu-contact {
    display: none;
}


@media screen and (max-width: 1024px) {
    .nav-container {
        width: 100%;
        max-width: 1024px;
        padding: 0 30px;
    }

    .menu {
        width: auto;
    }

    .menu > ul > li > a {
        font-size: 14px;
        padding: 20px 10px;
    }

    .header-btn a {
        padding: 12px 30px;
        font-size: 14px;
    }

    .nav-right {
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {

    .language-switcher {
        display: none;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo {
        width: 234px;
        height: 48px;
        order: 1;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .nav-right {
        display: none;
        order: 3;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        background: #15161b;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0;
        transition: left 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .menu.active {
        left: 0;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        line-height: 32px;
        text-align: center;
        z-index: 10;
    }

    .menu-close::before {
        content: "×";
    }

    .menu-logo {
        display: block;
        width: 100%;
        padding: 25px 30px;
        margin-bottom: 0;
    }

    .menu-logo img {
        width: 200px;
        height: 50px;
        object-fit: contain;
    }

    .menu > ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        padding: 20px 30px;
    }

    .menu > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu > ul > li > a {
        color: #fff;
        padding: 15px 0;
        width: 100%;
        font-size: 16px;
        display: block;
        position: relative;
        text-transform: uppercase;
    }

    .menu > ul > li.has-squares:not(.demos-trigger) > a {
        padding-right: 40px;
    }

    .menu > ul > li.demos-trigger > a::before {
        display: none !important;
    }

    .menu > ul > li.has-squares:not(.demos-trigger) > a::after {
        content: "›";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background: #1947cd;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        font-size: 20px;
        font-weight: bold;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .menu > ul > li.has-squares:not(.demos-trigger).active > a::after {
        background: #fff;
        color: #000;
        transform: translateY(-50%) rotate(90deg);
    }

    .menu > ul > li > a:hover {
        color: #ffb400;
    }

    .menu ul li ul {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .menu ul li.has-squares.active > ul {
        display: block;
        max-height: 500px;
        padding: 10px 0 10px 0;
    }

    .menu ul li ul li {
        border: none;
    }

    .menu ul li ul li a {
        color: rgba(255, 255, 255, 0.8);
        padding: 10px 0;
        font-size: 14px;
        text-transform: none;
    }

    .menu ul li ul li a:hover {
        background: transparent;
        color: #ffb400;
    }

    .menu ul li ul li ul {
        left: 0;
        box-shadow: none;
    }

    .menu ul li.has-squares::before {
        display: none;
    }

    .menu-contact {
        display: block;
        width: 100%;
        padding: 20px 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        color: #fff;
        text-decoration: none;
    }

    .menu-contact-item:last-of-type {
        margin-bottom: 0;
    }

    .menu-contact-icon {
        width: 40px;
        height: 40px;
        background: #1947cd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .menu-contact-icon i {
        color: #fff;
        font-size: 16px;
    }

    .menu-contact-text {
        font-size: 14px;
        font-weight: 500;
    }

    .menu-social {
        display: flex;
        gap: 15px;
        padding: 20px 30px 30px 30px;
        width: 100%;
    }

    .menu-social a {
        width: 40px;
        height: 40px;
        background: #1947cd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        transition: 0.3s;
    }

    .menu-social a:hover {
        background: #ffb400;
    }

    .header-btn {
        display: none;
    }

    .nav-right {
        gap: 15px;
    }
}


@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo {
        width: 200px;
        height: 42px;
    }

    .menu {
        width: 280px;
    }

    .menu-logo {
        padding: 20px 25px;
    }

    .menu-logo img {
        width: 180px;
        height: 45px;
    }

    .menu > ul {
        padding: 15px 25px;
    }

    .menu > ul > li > a {
        font-size: 15px;
        padding: 12px 0;
    }

    .menu ul li ul {
        padding: 8px 0 8px 0;
    }

    .menu ul li ul li a {
        font-size: 13px;
        padding: 8px 0;
    }

    .menu-contact {
        padding: 15px 25px;
    }

    .menu-contact-item {
        gap: 10px;
        margin-bottom: 12px;
    }

    .menu-contact-icon {
        width: 36px;
        height: 36px;
    }

    .menu-contact-icon i {
        font-size: 14px;
    }

    .menu-contact-text {
        font-size: 13px;
    }

    .menu-social {
        padding: 15px 25px 25px 25px;
        gap: 12px;
    }

    .menu-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .nav-right {
        gap: 10px;
    }

    .search-icon img {
        width: 20px;
        height: 20px;
    }

    .header-cart {
        width: 40px;
        height: 40px;
    }

    .header-cart img {
        width: 20px;
        height: 20px;
    }

    .header-cart-badge {
        font-size: 10px;
        padding: 1px 5px;
    }
}

@media screen and (max-width: 375px) {
    .logo {
        width: 180px;
        height: 38px;
    }

    .menu {
        width: 260px;
    }

    .menu-logo {
        padding: 18px 20px;
    }

    .menu-logo img {
        width: 160px;
        height: 40px;
    }

    .menu > ul {
        padding: 12px 20px;
    }

    .menu > ul > li > a {
        font-size: 14px;
    }

    .menu-contact {
        padding: 12px 20px;
    }

    .menu-social {
        padding: 12px 20px 20px 20px;
    }

    .burger-menu span {
        width: 25px;
    }

    .nav-right {
        gap: 8px;
    }
}
  
.hero-decor-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 420px;
    height: 260px;
    background: url("../images/main-slider-shape-2-1.png") no-repeat;
    background-size: cover;
    z-index: 2;
    animation: floatTop 4s ease-in-out infinite;
}

@keyframes floatTop {
    0% { transform: translate(0, 0); }
    50% { transform: translate(8px, 6px); }
    100% { transform: translate(0, 0); }
}

.hero-decor-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 320px;
    height: 320px;
    z-index: 5;
    pointer-events: none;
}


.hero-slider-container {
    background-color: #f1eeee;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 80px 5%;
    display: flex;
    align-items: center;
    margin-left: 60px;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content-wrapper {
    max-width: 1200px;
    width: 100%;
}

.hero-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-welcome-badge {
    background: white;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    position: relative;
}


.hero-welcome-text {
    font-size: 16px;
    color: #2855D6;
    font-weight: 500;
}

.hero-welcome-text span {
    color: #FFA500;
    font-weight: 700;
}

.hero-images-group {
    display: flex;
    gap: 15px;
}

.hero-image-box {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-main-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-highlight {
    color: transparent;
    -webkit-text-stroke: 2px #FFA500;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width:80%;
    height: 2px;
    background: #1947cd; 
    border-radius: 2px;
}

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-buttons-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-btn {
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.35s ease;
}

.hero-btn::before,
.hero-btn::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    transform: skewX(-50deg);
    transition: all 0.35s ease;
    z-index: -1;
}

.hero-btn::before { left: -90px; }
.hero-btn::after { right: -90px; }


.hero-btn-primary {
    background: #ffffff;
    color: #131418;
}

.hero-btn-primary::before,
.hero-btn-primary::after {
    background: #4169E1;
}

.hero-btn-primary:hover {
    background: #4169E1;
    color: #ffffff;
    border-color: #4169E1;
}

.hero-btn-primary:hover::before {
    left: 0;
}

.hero-btn-primary:hover::after {
    right: 0;
}


.hero-btn-secondary {
    background: #4169E1;    
    color: #ffffff;
}


.hero-btn-secondary::before,
.hero-btn-secondary::after {
    background: #ffb400;
}


.hero-btn-secondary:hover {
    background: #ffb400;
    color: #000; 
    border-color: #ffb400;
}

.hero-btn-secondary:hover::before {
    left: 0;
}

.hero-btn-secondary:hover::after {
    right: 0;
}

.hero-btn-primary:hover .hero-btn-icon img {
    filter: brightness(0) invert(1);
}

.hero-btn-secondary:hover .hero-btn-icon img {
    filter: brightness(0);
}


@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

   @media (max-width: 1024px) {

    .hero-slide {
        padding: 60px 40px;
        margin-left: 0;
    }

    .hero-main-title {
        font-size: 54px;
    }

    .hero-description {
        font-size: 17px;
    }
    .hero-image-box {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {

    .hero-slider-container {
        height: 700px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-decor-top {
        z-index: 0 ;
        opacity: 1 ;
        display: block ;
        transform: scale(0.8); 
    }

    .hero-slide {
        padding: 0px 20px ;   
        margin-left: 0;
        align-items: flex-start ; 
        justify-content: flex-start ; 
        height: 100%;
    }

    .hero-content-wrapper {
        margin-top: 100px ;
    }

    .hero-welcome-badge {
        width: 318px ;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 ;
        gap: 10px ;
    }

    .hero-welcome-text {
        font-size: 15px;
        white-space: nowrap;
    }

    .hero-images-group {
        display: none;
    }

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

    .hero-main-title {
        font-size: 40px ;
        line-height: 1.2 ;
        letter-spacing: -1px;
        margin-top: 10px;
    }

    .hero-description {
        font-size: 16px ;
        line-height: 1.5;
        margin-top: 10px;
    }

   .hero-buttons-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        align-items: flex-start;
    }

    .hero-btn {
        width: 80%;
        max-width: 260px;
        height: 50px;
        justify-content: center;
        font-size: 15px ;
    }
}

   @media (max-width: 480px) {

    .hero-slide {
        padding: 40px 20px;
        text-align: left;    
        align-items: flex-start;
    }

    .hero-header {
        justify-content: flex-start;
    }

    .hero-images-group {
        display: none;
    }

    .hero-welcome-badge {
        padding: 10px 20px;
        gap: 8px;
    }

    .hero-main-title {
        font-size: 32px;
        letter-spacing: -1px;
        text-align: left;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 30px;
        text-align: left;
        max-width: 100%;
    }

    .hero-buttons-group {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .hero-btn {
        width: 224px;
        height: 54px;
        padding: 0;            
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }
}

@media (max-width: 375px) {

    .hero-slide {
        padding: 30px 15px;
        text-align: left;
        align-items: flex-start;
    }

    .hero-main-title {
        font-size: 28px;
        line-height: 1.2;
        text-align: left;
    }

    .hero-description {
        font-size: 14px;
        text-align: left;
    }

    .hero-welcome-badge {
        transform: scale(0.9);
        padding: 8px 14px;
    }

    .hero-buttons-group {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .hero-btn {
        width: 224px;
        height: 54px;
        font-size: 14px;
        justify-content: center;
    }
}



.stats-area {
    width: 100%;
    background: #0f1014;
    position: relative;
    padding: 0;
    overflow: visible; 
    height: 200px; 
}

.stats-container {
    width: 1440px;
    margin: 0 auto;
    position: relative;
}

.stats-grid {
    width: 910px;
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
}

.stats-item {
    width: 293px;
    height: 200px;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    padding-top: 0; 
}

.stats-item:last-child {
    border-right: none;
}

.stats-icon-box {
    width: 81px;
    height: 82px;
    background: #ffb400;
    border-radius: 0 0 60px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.stats-icon-box img {
    width: 44px;
    height: 44px;
}


.stats-number {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
}

.stats-label {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.stats-photo {
    width: 528px;
    height: 781px;
    position: absolute;
    right: 0;
    top: -580px; 
    z-index: 3;
    pointer-events: none;
}

@media (max-width: 1024px) {

    .stats-container {
        width: 100%;
        padding: 0 20px;
    }

    .stats-grid {
        width: 100%;
        justify-content: space-between;
    }

    .stats-item {
        width: 30%;
        border-right: none;
        padding: 0 10px;
    }

    .stats-photo {
        width: 420px;
        height: auto;
        top: -500px;
        right: 0;
    }
}

@media (max-width: 768px) {

    .stats-area {
        height: auto;
        padding: 40px 0;
    }

    .stats-grid {
        flex-direction: row;
        gap: 10px;
        height: auto;
    }

    .stats-item {
        width: 33%;
        height: auto;
        padding: 0 10px;
    }

    .stats-icon-box {
        width: 70px;
        height: 70px;
    }

    .stats-number {
        font-size: 32px;
    }

    .stats-label {
        font-size: 14px;
    }

    .stats-photo {
        display: none; 
    }
}

@media (max-width: 480px) {

    .stats-area {
        height: auto;
        padding: 40px 0;
    }

    .stats-grid {
        display: flex;
        flex-direction: row;      
        justify-content: center;  
        align-items: center;
        gap: 10px;               
        width: 100%;
        height: auto;
        text-align: center;
        flex-wrap: nowrap;        
    }

    .stats-item {
        width: 33%;             
        min-width: 110px;         
        height: auto;
        border-right: none;
        padding: 0 5px;
        text-align: center;
    }

    .stats-icon-box {
        margin: -40px 0 10px 0;
    }

    .stats-number {
        font-size: 30px;
    }

    .stats-label {
        font-size: 14px;
    }

    .stats-photo {
        display: none ;
    }
}

@media (max-width: 375px) {

    .stats-grid {
        gap: 20px;
        align-items: center;   
        text-align: center;
    }

    .stats-item {
        align-items: center;    
        text-align: center;
        width: 100%;
        max-width: 260px;
    }

    .stats-icon-box {
        width: 60px;
        height: 60px;
    }

    .stats-icon-box img {
        width: 32px;
        height: 32px;
    }

    .stats-number {
        font-size: 26px;
    }

    .stats-label {
        font-size: 13px;
    }

    .stats-photo {
        display: none ;
    }
}


.best-features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.section-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.section-main-title .highlight {
    color: #ffb400;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 400px);
    justify-content: center;
    gap: 30px;
}

.feature-card {
    width: 400px;
    height: 388px;
    background: #f5f5f5;
    border-radius: 20px 20px 80px 20px;
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: transform 0.4s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 0;
    transition: top 0.5s ease;
}

.feature-card:hover::before {
    top: 0;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.card-top-arc {
    width: 100%;
    height: 100px;
    background: transparent; 
}

.icon-circle {
    width: 85px;
    height: 85px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -60px 0 20px 35px;
    transition: all 0.4s ease;
}

.icon-circle::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 1px dashed #ffb400;
    transition: all 0.4s ease;
}

.icon-circle img {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1;
    transition: filter 0.4s ease;
}

.feature-card:hover .icon-circle {
    background: #1947cd;
}

.feature-card:hover .icon-circle::before {
    border-color: #1947cd;
}

.feature-card:hover .icon-circle img {
    filter: brightness(0) invert(1); 
}

.card-inner {
    padding: 0 35px 40px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.feature-card:hover .card-title {
    color: #fff;
}


.card-description {
    color: #5E5B5B;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 40px;
}

.feature-card:hover .card-description {
    color: #ccc;
}


.card-button {
    position: absolute;
    bottom: 25px;
    left: 35px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.feature-card:hover .card-button {
    color: #FFB400;
}

.button-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1e40e8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card:hover .button-arrow {
    background: #FFB400;
    color: #fff;
}

@media (max-width: 1024px) {
    .best-features-section {
        padding: 50px 0;
    }

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

    .feature-card {
        width: 100%;
        height: auto;
    }

    .icon-circle {
        margin: -50px 0 15px 25px;
    }

    .card-inner {
        padding: 0 25px 35px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .icon-circle {
        margin: -45px 0 15px 20px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .feature-card {
        height: auto;
    }

    .card-button {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }

    .feature-card {
        width: 360px;
        height: 379px;
    }

    .icon-circle {
        margin: -40px 0 15px 20px;
    }

    .card-inner {
        padding: 0 20px 35px;
    }

    .card-button {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 375px) {
    .features-grid {
        justify-items: center;
        gap: 15px;
    }

    .feature-card {
        width: 360px;
        height: 379px;
    }

    .icon-circle {
        margin: -35px 0 15px 15px;
        width: 75px;
        height: 75px;
    }

    .icon-circle img {
        width: 34px;
        height: 34px;
    }

    .card-inner {
        padding: 0 15px 30px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .card-button {
        bottom: 18px;
        left: 15px;
    }
}


.company-about-section {
    padding: 80px 0;
    position: relative;
    background-color: #f1eeee;
}


.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.left-column {
    flex: 1;
    position: relative;
    z-index: 2;
}

.right-column {
    flex: 1;
    z-index: 2;
}

.images-wrapper {
    position: relative;
}

.main-image-box {
    position: relative;
}

.main-photo {
    width: 100%;
    border-radius: 50%;
    border: 20px solid #f0f4ff;
    display: block;
}


.second-image-box {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 15px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.second-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-box-section {
    padding-left: 20px;
}

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

.header-top-part {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.header-shape {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FFB400, #FFA000);
    border-radius: 4px;
}

.header-small-title {
    color: #1947CD;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.header-big-title {
    font-size: 35px;
    color: #222;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 10px;
}

.header-big-title .color-text {
    color: #FFB400;
}

.intro-text {
    font-size: 16px;
    color: #5e5b5b;
    line-height: 1.8;
    margin-top: -10px;
    margin-bottom: 25px;
}

.service-card {
    margin-bottom: 40px;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 0px;
    position: relative;
}

.service-icon {
    width: 60px;         
    height: 60px;
    background: #ffb400;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;   
}

.service-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}


.service-dot {
    width: 24px;
    height: 24px;
    background: #1947cd;
    border: 2px solid #ffffff; 
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -6px;
}

.service-title {
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    color: #222;
    background: linear-gradient(to right, #DDDDDD , #DDDDDD00);
    padding: 8px 15px; 
    display: inline-block; 
}

.service-text {
    margin: 10px 0 0 110px; 
    font-size: 16px;
    line-height: 26px;
    color: #5E5B5B;
    margin: 10px 0 0 0;
}

@media (max-width: 1024px) {
    .main-row {
        gap: 40px;
    }
    .header-big-title {
        font-size: 30px;
    }
    .intro-text {
        font-size: 15px;
    }
    .service-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .main-row {
        flex-direction: column;
        text-align: left;
        gap: 50px;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    .content-box-section {
        padding-left: 0;
    }

    .second-image-box {
        right: -20px;
        bottom: -30px;
        width: 220px;
        height: 220px;
    }

    .header-big-title {
        font-size: 28px;
    }

    .service-content {
        gap: 10px;
    }

    .service-text {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .company-about-section {
        padding: 50px 0;
    }

    .main-row {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .left-column {
        order: 1;
        width: 100%;
    }

    .right-column {
        order: 2;
        width: 100%;
        text-align: left;
    }

    .main-photo {
        border-width: 12px;
    }

    .second-image-box {
        width: 180px;
        height: 180px;
        bottom: -20px;
        right: -10px;
        border-width: 10px;
    }

    .header-big-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .intro-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .service-content {
        gap: 10px;
    }

    .service-title {
        font-size: 17px;
        padding: 6px 10px;
    }

    .service-text {
        margin-top: 8px;
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 375px) {
    .main-photo {
        border-width: 10px;
    }

    .second-image-box {
        width: 160px;
        height: 160px;
        bottom: -15px;
        right: -5px;
    }

    .header-big-title {
        font-size: 22px;
    }

    .intro-text {
        font-size: 14px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-text {
        font-size: 14px;
    }
}


.contact-block {
    position: relative;
    padding: 60px 20px;
    background-color: #15161BD1;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.shape-overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 2;
}

.shape-overlay::after {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 130px;
height: 100px;
background: #1d4ed8;
clip-path: polygon(100% 0, 0 100%, 100% 100%);
z-index: 1;
}

.shape-overlay::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 120px;
height: 100px;
background: #fbbf24;
clip-path: polygon(100% 0, 0 0, 100% 100%);
z-index: 2; 
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}


.contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;  
    margin: 0 auto;
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.icon-wrapper {
    width: 120px;
    height: 120px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.icon-wrapper::before {
    content: "";
    position: absolute;
    inset: 5px; 
    border: 1px dashed #1947cd;
    border-radius: 50%;
    pointer-events: none;
}

.icon-wrapper img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    display: block; 
}

.text-content {
    flex: 1;
}

.contact-title {
    font-size: 30px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
}

.phone-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.phone-list li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-list li a:hover {
    color: #1947cd;
}

.phone-separator {
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
}

.btn-block{
    flex-shrink: 0;
}

.contact-button {
display: inline-flex;
align-items: center;
padding: 18px 40px;
background-color: #ffffff;
color: #1f2937;
font-weight: 700;
font-size: 16px;
border-radius: 12px;
position: relative;
overflow: hidden;
transition: all 0.35s ease;
z-index: 0;    
text-decoration: none; 
}


.button-content {
position: relative;
z-index: 5;     
display: inline-flex;
align-items: center;
gap: 10px;
}


.contact-button::before,
.contact-button::after {
content: "";
position: absolute;
width: 70px;
height: 100%;
background: #ffb400;
transform: skewX(-45deg);
transition: all 0.4s ease;
z-index: 1;     
}

.contact-button::before {
left: -55px;
}


.contact-button::after {
right: -55px;
}


.contact-button:hover {
background: #ffb400;
color: #ffffff;
}


.contact-button:hover::before {
left: 0;
}

.contact-button:hover::after {
right: 0;
}

.contact-button:hover .arrow-element {
color: #ffffff;
}


@media (max-width: 1024px) {
    .contact-title {
        font-size: 26px;
    }
    .icon-wrapper {
        width: 110px;
        height: 110px;
    }
    .icon-wrapper img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .shape-overlay::before {
        display: block !important;
        top: 0;
        right: 0;
        width: 120px;
        height: 100px;
        background: #fbbf24;
        clip-path: polygon(100% 0, 0 0, 100% 100%);
        z-index: 2;
    }

    .shape-overlay::after {
        display: block !important;
        bottom: 0;
        left: 0;
        width: 120px;
        height: 100px;
        background: #1d4ed8;
        clip-path: polygon(0 100%, 100% 100%, 0 0);
        z-index: 1;
    }

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

    .contact-title br {
        display: none;
    }

    .contact-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

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

    .shape-overlay::before,
    .shape-overlay::after {
        display: none;
    }

    .btn-block {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-wrapper {
        gap: 25px;
    }

    .icon-wrapper {
        width: 95px;
        height: 95px;
    }

    .icon-wrapper img {
        width: 52px;
        height: 52px;
    }

    .contact-title {
        font-size: 20px;
    }

    .phone-list {
        gap: 12px;
    }

    .contact-button {
        padding: 15px 30px;
        font-size: 15px;
    }

    .shape-overlay::before,
    .shape-overlay::after {
        display: none;
    }
}

@media (max-width: 375px) {
    .contact-title {
        font-size: 18px;
    }

    .icon-wrapper {
        width: 85px;
        height: 85px;
    }

    .icon-wrapper img {
        width: 48px;
        height: 48px;
    }

    .phone-list li a {
        font-size: 16px;
    }

    .contact-button {
        padding: 14px 26px;
        font-size: 14px;
    }
}

.arrow-element {
    font-size: 18px;
    font-weight: bold;
}

.testimonials-section {
    max-width: 1170px;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 20px;
    background-color: #ffffff;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.testimonials-content {
    width: 1056px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px;
}

.left-block{
    flex: 1;
}

.section-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.section-tagline {
    color: #1947cd;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title{
    font-size: 35px;
    color: #222;
    margin-bottom: 40px;
    line-height: 1.3;
}

.highlight-span {
    color: #ffb400;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}


.testimonial-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease;
    position: absolute;
    width: 620px;
    top: 0;
    left: 0;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-card.exit {
    opacity: 0;
    transform: translateX(-100px);
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    color: #ffb400;
    font-size: 18px;
}

.testimonial-text {
    color: #5e5b5b;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 500;
}

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

.author-label {
    font-size: 22px;
    color: #222;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-role {
    color: #5e5b5b;
    font-size: 15px;
}

.quote-icon {
    width: 50px;
    height: 50px;
    fill: #ffb400;
}

.carousel-dots {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 16px;
    height: 16px;
    border: 2px solid #ffb400;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background-color: #ffb400;
}

.dot.active {
    background-color: #1947cd;
    border-color: #1947cd;
}

.right-side {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 324px;

}

.image-circle {
    width: 324px;
    height: 400px;
    border-radius: 40%;
    overflow: hidden;
    margin-left: auto;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


 .logos-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}


.logo-track {
    display: flex;
    gap: 60px;
    transition: transform 0.8s ease;
}


.logo-item {
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}


.logo-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}


.logo-image-hover {
    width: 100%;
    max-width: 150px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}


.logo-item:hover .logo-image {
    opacity: 0;
}
.logo-item:hover .logo-image-hover {
    opacity: 1;
}

.logo-item:hover {
    border: 1px solid #1947cd;
}

.logo-item::before,
.logo-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    transition: 0.3s ease;
}

.logo-item::before {
    top: 0;
    left: 0;
    border-top: 25px solid #ffb400;
    border-right: 25px solid transparent;
}

.logo-item::after {
    bottom: 0;
    right: 0;
    border-bottom: 25px solid #ffb400;
    border-left: 25px solid transparent;
}

.logo-item:hover::before,
.logo-item:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .testimonials-content {
        width: 100%;
        gap: 40px;
        flex-direction: column;
        margin: 20px auto;
    }

    .testimonial-card {
        width: 100%;
        max-width: 620px;
    }

    .image-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 20px;
    }

    .testimonials-content {
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    .left-block {
        width: 100%;
    }

    .hero-title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .carousel-wrapper {
        width: 100%;
    }

    .testimonial-card {
        width: 100%;
        position: relative;
        left: 0;
    }

    .author-box {
        justify-content: center;
        gap: 20px;
    }

    .right-side {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .image-circle {
        width: 260px;
        height: 320px;
    }
}

@media (max-width: 480px) {

    .testimonial-card {
        display: none ;
    }

    .testimonial-card.active {
        display: block;
    }

    .carousel-wrapper {
        width: 100%;
        overflow-x: auto;
        display: flex;
        gap: 20px;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 auto;
        width: 295px;
        height: 413px;
        background: #f4f4f4;
        padding: 20px;
        scroll-snap-align: start;
        opacity: 1;
        transform: none;
        position: relative;
    }

    .testimonial-card.active {
        width: 295px;
        height: 413px;
    }


    .carousel-dots {
        justify-content: flex-start;
        margin-top: 15px;
        padding-left: 5px;
    }

    .dot {
        width: 16px;
        height: 16px;
    }

    .hero-title br {
        display: none;
    }

    .hero-title {
        text-align: left;
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .testimonial-text {
        text-align: left;
        margin-bottom: 20px;
    }

    .author-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .quote-icon {
        align-self: flex-start;
    }

    .testimonials-section {
        background: transparent ;
        box-shadow: none ;
        padding: 20px;
        margin-top: 30px;
    }

    .testimonials-content {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .right-side {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .image-circle {
        width: 240px;
        height: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 375px) {

    .testimonial-card.active {
        width: 300px;
        height: 466px;
    }

    .dot {
        width: 16px;
        height: 16px;
    }

    .image-circle {
        width: 210px;
        height: 260px;
    }
}


.projects-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tagline-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.decor-shape {
    width: 30px;
    height: 3px;
    background-color: #ff9800;
}

.tagline {
    color: #1947cd;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-title {
    font-size: 35px;
    color: #222;
    line-height: 1.3;
    margin-bottom: 40px;
}

.main-title .colored-word {
    color: #ffb400;
}

.filter-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background-color: #f4f4f4;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background-color: #1947cd;
    transition: right 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before {
    right: 0;
}

.filter-btn:not(:hover)::before {
    right: 100%;
    left: auto;
    transition: left 0.4s ease;
}

.filter-btn:hover {
    color: #ffffff;
}

.filter-btn.active {
    background-color: #1947cd;
    color: #ffffff;
}

.filter-btn.active::before {
    right: 0;
}

.grid-3-col {
display: grid;
grid-template-columns: repeat(3, 370px);
gap: 30px;
justify-content: center;
}

.col {
display: flex;
flex-direction: column;
gap: 30px;
}

.project-card {
position: relative;
overflow: hidden;
border-radius: 10px;
cursor: pointer;
}

.project-card.small {
width: 370px;
height: 280px;
}

.project-card.tall {
width: 370px;
height: 590px;
}


.project-image {
width: 100%;
height: 100%;
overflow: hidden;
}

.project-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .4s ease;
}

.project-card:hover img {
transform: scale(1.08) rotate(2deg);
}


.hover-content {
position: absolute;
left: 50%;
top: 50%;
width: 85%;
background: white;
padding: 25px;
transform: translate(-50%, -50%) translateY(40px);
opacity: 0;
border-radius: 3px;
transition: all .4s ease;
z-index: 15;
}

.project-card:hover .hover-content {
opacity: 1;
transform: translate(-50%, -50%) translateY(0);
}

.project-title a {
color: #222;
font-size: 20px;
font-weight: 700;
text-decoration: none;
}

.project-description {
color: #666;
margin-top: 10px;
}

.detail-btn {
display: inline-flex;
width: 40px;
height: 40px;
border-radius: 50%;
background: #2196F3;
color: white;
justify-content: center;
align-items: center;
text-decoration: none;
margin-top: 10px;
transition: .3s;
}

.detail-btn:hover {
background: #ffb400;
transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .grid-3-col {
        grid-template-columns: repeat(2, 350px);
        gap: 25px;
    }

    .project-card.small,
    .project-card.tall {
        width: 350px;
    }

    .project-card.small {
        height: 260px;
    }

    .project-card.tall {
        height: 540px;
    }
}

@media (max-width: 768px) {
    .grid-3-col {
        grid-template-columns: 1fr;
    }

    .project-card.small,
    .project-card.tall {
        width: 100%;
    }

    .project-card.small {
        height: 260px;
    }

    .project-card.tall {
        height: 540px;
    }

    .filter-menu {
        max-width: 500px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 480px) {
    .filter-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto 40px;
    }

    .filter-btn {
        width: 110px;
        font-size: 16px;
        padding: 10px 0;
        text-align: center;
    }

    .grid-3-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .col {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .project-card.small,
    .project-card.tall {
        width: 360px;
    }

    .project-card.small {
        height: 272px;
    }

    .project-card.tall {
        height: 574px;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 375px) {
    .project-card.small,
    .project-card.tall {
        width: 330px;
    }

    .project-card.small {
        height: 250px;
    }

    .project-card.tall {
        height: 540px;
    }

    .filter-btn {
        width: 100px;
        font-size: 15px;
    }
}


.faq-section {
    position: relative;
    padding: 80px 0;
    background-image: url('../images/blog-2-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/linear-background.png'); 
    background-size: cover;
    background-position: center;
    opacity: 1; 
    z-index: 1;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.faq-content {
    max-width: 900px;
}

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

.tagline-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tagline {
    color: #ffb400;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 35px;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-title .highlight-word {
    color: #ffb400;
}

.description-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
    background-color: #1947cd;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 5px 0px;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    height: 51px;
}

.check-icon {
    width: 48px;
    height: 48px;
    background-color: #1947cd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-item.active .check-icon {
    background-color: #ff9800;
}

.check-icon i {
    color: #ffffff;
    font-size: 16px;
}

.question-title {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    flex: 1;
}

.toggle-button {
    width: 45px;
    height: 45px;
    background-color: #ff9800;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-item.active .toggle-button {
    background-color: #ffffff;
}

.toggle-button i {
    color: #ffffff;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.accordion-item.active .toggle-button i {
    color: #2196F3;
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: transparent;
}

.accordion-item.active .accordion-content {
    max-height: 240px;
}

.content-inner {
    padding: 20px 25px 25px 85px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.large-number {
    font-size: 70px;
    font-weight: 700;
    color: transparent;              
   -webkit-text-stroke: 2px #ffffff;
}

.answer-text {
    background-color: transparent;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .faq-content {
        max-width: 100%;
    }

    .section-title {
        font-size: 32px;
    }

    .description-text {
        font-size: 15px;
    }

    .content-inner {
        padding: 20px 20px 20px 70px;
    }

    .large-number {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .description-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .accordion-header {
        height: 48px;
        padding: 5px 10px;
    }

    .question-title {
        font-size: 16px;
    }

    .check-icon {
        width: 42px;
        height: 42px;
    }

    .toggle-button {
        width: 38px;
        height: 38px;
    }

    .content-inner {
        padding: 18px 20px 20px 60px;
        gap: 20px;
    }

    .large-number {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 0;
    }

    .section-header {
        text-align: left;
    }

    .tagline-row {
        justify-content: flex-start;
    }

    .section-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .description-text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .accordion-list {
        gap: 12px;
    }

    .accordion-header {
        height: auto;
        padding: 10px;
        gap: 10px;
    }

    .check-icon {
        width: 38px;
        height: 38px;
    }

    .question-title {
        font-size: 15px;
    }

    .toggle-button {
        width: 34px;
        height: 34px;
    }

    .content-inner {
        flex-direction: column;
        padding: 15px 15px 20px 20px;
        gap: 10px;
    }

    .large-number {
        font-size: 40px;
        -webkit-text-stroke: 1.5px #ffffff;
    }

    .answer-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 375px) {
    .section-title {
        font-size: 24px;
    }

    .description-text {
        font-size: 13px;
    }

    .question-title {
        font-size: 14px;
    }

    .check-icon {
        width: 34px;
        height: 34px;
    }

    .toggle-button {
        width: 32px;
        height: 32px;
    }

    .large-number {
        font-size: 34px;
    }

    .content-inner {
        padding: 12px 15px 18px 18px;
    }
}


.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    margin-top: 50px;
    margin-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.image-block {
    position: relative;
}

.image-container {
    width: 570px;
    height: 730px;
    border-radius: 200px 0px 200px 0px; 
    overflow: hidden;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-container {
    position: absolute;
    top: 10px;  
    left: -80px;
    z-index: 50;
    width: 438px;  
    height: 220px;
}

.circle-icon {
    position: absolute;
    top: -70px;
    left: 245px; 
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffb100;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.icon-inner {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    border: 2px dotted #ffb100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-inner i {
    color: #ffb100;
    font-size: 46px;
}

.phone-strip {
    position: absolute;
    top: 65px;
    left: 0;
    background: #1f52d1;
    padding: 30px 80px 30px 40px;
    width: 320px;
    border-radius: 70px;
    transform: rotate(-35deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1;
}

.phone-number {
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.form-area {
    width: 570px;
    height: auto;
    border-radius: 20px;
    padding-top: 20px;
    position: relative;
}

.form-header {
    width: 540px;
    height: 94px;
    background: #1947cd;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    text-align: center;
    padding-top: 10px;
    position: relative;
}

.form-header::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #1947cd;
    clip-path: polygon(0 0, 100% 0, 52% 100%, 48% 100%);
}

.form-title {
    font-size: 30px;
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-subtitle {
    color: white;
    font-size: 16px;
    margin-top: 5px;
}

.form-body {
    padding: 100px 30px 30px;
}

.field-group {
    margin-bottom: 18px;
}

.input-field {
    width: 510px;
    height: 50px;
    padding: 0 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
}

.select-field {
    width: 510px;
    height: 50px;
    padding: 0 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
}

.textarea-field {
    width: 510px;
    height: 118px;
    padding: 12px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    resize: none;
}

.button-container {
    position: relative;
    width: 510px;
}

.submit-button {
    width: 510px;
    padding: 18px;
    background: #ff9800; 
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3;
    position: relative;
    text-align: center;
}

.file-upload-group {
    position: relative;
}

.file-upload-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #777;
    width: 100%;
    height: 55px;
    position: relative;
}

.file-upload-text {
    pointer-events: none;
}

.file-upload-icon {
    background: #4a4a4a;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    pointer-events: none;
}

.file-upload-input {
    opacity: 0;
    position: absolute;
    inset: 0;
    cursor: pointer;
}


@media (max-width: 1024px) {

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .image-container {
        width: 100%;
        height: 650px;
        border-radius: 150px 0 150px 0;
    }

    .form-area {
        width: 100%;
        height: auto;
    }

    .input-field,
    .select-field,
    .textarea-field,
    .button-container,
    .submit-button {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .image-block {
        order: -1;
        margin-bottom: 40px;
    }

    .image-container {
        width: 100%;
        height: 550px;
    }

    .phone-container {
        top: 20px;
        left: -40px;
        width: 300px;
        height: 180px;
    }

    .circle-icon {
        width: 120px;
        height: 120px;
        top: -50px;
        left: 180px;
    }

    .icon-inner {
        width: 80px;
        height: 80px;
    }

    .icon-inner i {
        font-size: 36px;
    }

    .phone-strip {
        padding: 20px 60px 20px 30px;
        width: 250px;
        top: 50px;
        transform: rotate(-30deg);
    }

    .phone-number {
        font-size: 24px;
    }

    .form-area {
        width: 100%;
        height: auto;
        box-shadow: none;
        border: 3px solid #f4f4f4;
    }

    .form-header {
        width: 100%;
    }

    .form-body {
        padding: 120px 20px 20px;
    }

    .input-field,
    .select-field,
    .textarea-field,
    .submit-button {
        width: 100%;
    }
}


@media (max-width: 480px) {

    .contact-section {
        padding: 20px 10px;
    }

    .image-container {
        height: 461px;
        border-radius: 100px 0 100px 0;
    }

    .phone-container {
        left: -30px;
        width: 250px;
    }

    .circle-icon {
        width: 100px;
        height: 100px;
        left: 150px;
        top: -40px;
    }

    .icon-inner {
        width: 70px;
        height: 70px;
    }

    .phone-strip {
        width: 200px;
        padding: 15px 50px 15px 25px;
        top: 40px;
    }

    .phone-number {
        font-size: 20px;
    }

    .form-area {
        box-shadow: none ;
    }
    .form-header {
        height: 80px;
    }

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

    .form-subtitle {
        font-size: 14px;
    }

    .form-body {
        padding: 100px 15px 20px;
    }

    .input-field,
    .select-field,
    .textarea-field,
    .submit-button {
        width: 100%;
        font-size: 14px;
    }
}

@media (max-width: 375px) {

    .image-container {
        height: 350px;
        border-radius: 80px 0 80px 0;
    }

    .phone-container {
        left: -10px;
        top: 10px;
        width: 220px;
    }

    .circle-icon {
        width: 80px;
        height: 80px;
        left: 130px;
        top: -30px;
    }

    .icon-inner {
        width: 55px;
        height: 55px;
    }

    .icon-inner i {
        font-size: 26px;
    }

    .phone-strip {
        width: 170px;
        padding: 12px 30px 12px 20px;
        top: 35px;
    }

    .phone-number {
        font-size: 18px;
    }

    .form-title {
        font-size: 22px;
    }

    .form-body {
        padding: 90px 10px 20px;
    }

    .input-field,
    .select-field,
    .textarea-field,
    .submit-button {
        width: 100%;
    }
}



.map-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.fluid-container {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 1024px) {
    .map-wrapper {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .map-wrapper {
        width: 390px;
        height: 400px;
        margin: 0 auto;
    }

    .map-iframe {
        width: 390px;
        height: 400px;
    }
}

@media (max-width: 375px) {
    .map-wrapper {
        width: 360px;
        height: 380px;
    }

    .map-iframe {
        width: 360px;
        height: 380px;
    }
}


.blog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tagline-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tagline {
    color: #1947cd;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-title {
    font-size: 35px;
    color: #222;
    line-height: 1.3;
}

.main-title .highlight-word {
    color: #ffb400;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-card {
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.image-area {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.article-content {
    padding: 30px;
    position: relative;
    height: 219px;
}

.meta-info {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    margin-bottom: 30px;
    width: 100%;
    margin-top: -73px;
    margin-left: 40px;
}

.category-badge {
    background-color: #ffb400;
    color: #ffffff;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    border-radius: 0;
    text-decoration: none;
}

.category-badge::after {
    display: none;
}

.date-info {
    background: #ffffff;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    border-radius: 0;
    border-left: 1px solid #eee;
}

.date-info i {
    color: #ffb100;
    font-size: 16px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    margin-left: 150px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: #5e5b5b;
    font-size: 14px;
}

.author-name a {
    color: #5e5b5b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-name a:hover {
    color: #1947cd;
}

.article-title {
    font-size: 22px;
    color: #222;
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
}

.article-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #ffb400;
}

.button-area {
    position: relative;
    display: flex;
    justify-content: center;
}


.round-button {
    width: 70px;
    height: 70px;
    background: #121212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
    margin-left: 240px;
}

.round-button i {
    transform: rotate(-45deg);
    font-size: 22px;
}

.hover-overlay {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.45s ease;
}

.plus-link {
    text-decoration: none;
}

.plus-icon {
    font-size: 25px;
    color: #fff;
    cursor: pointer;
}

.blog-card:hover .hover-overlay {
    top: 0;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .image-area {
        height: 320px;
    }

    .article-content {
        padding: 25px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .image-area {
        height: 300px;
    }

    .article-content {
        padding: 22px;
    }

    .meta-info {
        margin-left: 20px;
    }

    .author-info {
        margin-left: 80px;
    }

    .article-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .blog-card {
        width: 360px;
    }

    .image-area {
        width: 360px;
        height: 260px;
    }

    .article-content {
        padding: 20px;
    }

    .meta-info {
        margin-left: 10px;
    }

    .author-info {
        margin-left: 20px;
    }

    .article-title {
        font-size: 18px;
        text-align: left;
    }

    .round-button {
        margin-left: 150px;
    }
}

@media (max-width: 375px) {
    .blog-card {
        width: 340px;
    }

    .image-area {
        width: 340px;
        height: 240px;
    }

    .article-content {
        padding: 18px;
    }

    .round-button {
        margin-left: 135px;
    }
}


.main-footer {
    position: relative;
    background: #222;
    background-image: url(../images/background-footer.svg) ;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 0;
    overflow: hidden;
}

.container {
    max-width: 1320px;
    margin: 30px auto;
    padding: 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.3fr 1fr 1fr 1fr; 
}

.footer-col {
    color: white;
    white-space: nowrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo-icon {
    width: 200px; 
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.logo-highlight {
    color: #ffb400;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
    color: #ccc;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 17px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #92918F;
    text-decoration: none;
    transition: all 0.3s ease;
}


.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}



.footer-pages .footer-suport .pages-grid {
    display: grid;
    grid-template-columns:repeat(3,1fr);
    gap: 15px;
}


.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
}

.footer-menu a:hover {
    color: #FFB400;
}

.footer-services .footer-menu li::before {
    color: #fff;
}

.copyright-section {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 0;
}

.copyright-box {
    width: 100%;
    max-width: 1200px;
    height: 50px;
    background: #1947cd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    position: relative;
}

/* <<<<<<< ours */
/* Inline status messages for contact/newsletter forms */
.form-status {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    min-height: 18px;
}

.form-status--success {
    color: #0a7f3f;
}

.form-status--error {
    color: #c0392b;
}


/* =======
>>>>>>> theirs */
.copyright-box::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 30px;
    height: 50px;
    background: #1947cd;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.copyright-box::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 0;
    width: 30px;
    height: 50px;
    background: #1947cd;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.sykors-icon {
    width: 20px;
    height: auto;
    margin: 0 6px;
    vertical-align: middle;
    display: inline-block;
}


@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-description {
        max-width: 100%;
    }

    .pages-grid {
        gap: 10px 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-col {
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .logo-icon {
        width: 180px;
    }

    .footer-description {
        font-size: 14px;
        max-width: 320px;
    }

    .footer-social {
        gap: 10px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-title {
        font-size: 20px;
    }

    .pages-grid {
        grid-template-columns: 1fr;
    }

    .footer-menu li {
        font-size: 14px;
        margin-bottom: 12px;
    }


    .copyright-box {
        font-size: 13px;
        height: 45px;
    }

    .copyright-box p {
        text-align: center;
        line-height: 1.4;
    }

    .copyright-box p img {
        display: inline-block;
        margin-top: 5px;
    }

    .copyright-box p span {
        display: block;
        margin-top: 4px;
    }
}

@media (max-width: 375px) {
    .footer-content {
        gap: 30px;
    }

    .logo-icon {
        width: 160px;
    }

    .footer-description {
        max-width: 290px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .footer-title {
        font-size: 19px;
    }

    .footer-menu a {
        font-size: 14px;
    }

    .copyright-box {
        font-size: 12px;
        height: 42px;
    }
}
