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

body {
    font-family: Arial, sans-serif;
    color: #2B2B28;
    background-color: #EBE5DE;
    overflow-x: hidden;
}
.white-bg{
    background-color: white !important;
}
.gray-bg{
    background-color: #EBE5DE !important;
}
.gray-bg .project-card{
    background-color: white;
}

/* Top Header */
.top-header {
    background-color: white;
    padding: 12px 0;
    font-size: 14px;
}
.top-header  a{
    color: #2B2B28;
    text-decoration: none;
}
.top-header  a:hover{
    text-decoration: underline;
    color: black;
}
.top-header i{
    color: #FFAE00;
}
.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact-item i {
    font-size: 16px;
}

.header-address {
    font-size: 13px;
}
.header-tel.text-end{
    text-align: right !important;
}

/* Navigation */
.navbar {
    background-color: #4a1f5c;
    padding: 15px 0;
}

.navbar-brand .logo {
    height: 50px;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-size: 15px;
    transition: all 0.3s;
    border: 1px solid transparent;
    border-color: #fff;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    padding: 40px 0;
    background-image: url(../img/block-1-bg.png);
    background-position: left top;
    background-repeat: no-repeat;
}

.hero-logo {
    max-width: 135px;
    width: 100%;
}

.hero-card {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid #005A83;
    border-radius: 260px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-card-image {
    flex-shrink: 0;
}

.hero-card-image img {
    width: 250px;
    height: 207px;
    object-fit: cover;
}

.hero-card-content {
    flex-grow: 1;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-card-content h3 {
    color: #0066b3;
    font-size: 22px;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 20px;
}

.hero-card-link {
    color: #0066b3;
    text-decoration: none;
    font-size: 15px;
    border: 1px solid #0066b3;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s;
    white-space: nowrap;
}

.hero-card-link:hover {
    background-color: white;
    color: #0066b3;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-top: 40px;
    line-height: 1.6;
}
.product-hero-card-image{
    flex-shrink: 0;
    align-items: center;
    height: 100%;
    display: flex;
}
.product-hero-card-image img{
    object-fit: cover;
}
.product-hero-card{
    padding: 20px 40px;
}

/* Design Section */
.design-section {
    background-color: #fff;
    padding: 80px 0;
}
.design-image {
    background-image: url(../img/block-2-bg.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 44%;
}
.design-section h2 {
    color: #0066b3;
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: bold;
}

.design-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.btn-custom {
    background-color: #fdb913;
    border: none;
    padding: 14px 45px;
    border-radius: 30px;
    color: #333;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-custom:hover {
    background-color: #e5a610;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 185, 19, 0.4);
    color: #333;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #EBE5DE;
    padding: 80px 0;
}

.philosophy-card {
    background-color: #f5ece3;
    padding: 40px 35px;
    border-radius: 25px;
    height: 100%;
    transition: transform 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-card h3 {
    color: #0066b3;
    font-size: 26px;
    margin-bottom: 25px;
    position: relative;
}
.philosophy-card h3:after{
    content: '';
    background: #FCAF00;
    height: 3px;
    width: 60px;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.philosophy-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* Markets Section */
.markets-section {
    background-color: #fff;
    padding: 80px 0;
    background-image: url(../img/markets-bg.png);
    background-position: left bottom;
    background-repeat: no-repeat;
}

.section-title {
    color: #0066b3;
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: bold;
}

.markets-description {
    font-size: 16px;
    max-width: 1000px;
    margin: 0 auto 30px;
    color: #888A8C;
}

.market-item {
    text-align: center;
    transition: transform 0.3s;
}

.market-item:hover {
    transform: translateY(-10px);
}

.market-image {
    margin-bottom: 20px;
}

.market-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.market-item p {
    font-size: 18px;
    line-height: 1.4;
}

/* Services Section */
.services-section {
    background-color: #EBE5DE;
    padding: 80px 0;
    background-image: url(../img/services-bg.png);
    background-position: center bottom;
    background-repeat: no-repeat;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 45px;
    text-align: right;
    flex-direction: row-reverse;
    justify-content: left;
    align-items: center;
}

.service-item-right {
    flex-direction: row-reverse;
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.service-icon-purple {
    background-color: #6b3d7c;
}

.service-icon-pink {
    background-color: #e05a7c;
}

.service-icon i {
    font-size: 36px;
    color: #fff;
}

.service-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: bold;
}

.service-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
.text-end{
    text-align: left !important;
}
.phone-mockup {
    max-width: 220px;
    width: 100%;
}

/* Projects Section */
.projects-section {
    background-color: #fff;
    padding: 80px 0;
}

.projectsSwiper {
    padding: 30px 60px 50px;
}

.project-card {
    background: transparent;
    border-radius: 150px;
    border: 1px solid #005A83;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.project-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px){
    .project-card {
        flex-direction: column;
    }
}
.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 141px;
    border: 1px solid #0066b3;
}

.project-image img {
    width: 207px;
    height: 207px;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-name {
    padding: 25px;
    background: #fff;
    text-align: center;
}

.project-name h4 {
    color: #0066b3;
    font-size: 20px;
    margin: 0;
    font-weight: bold;
}
.download {
    height: 50px;
    margin-top: 40px;
    text-align: center;
}

/* Partners Section */
.partners-section {
    background-color: #EBE5DE;
    padding: 80px 0;
}

.partnersSwiper {
    padding: 30px 60px 50px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    height: 120px;
    transition: all 0.3s;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: #4a1f5c;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #4a1f5c;
    color: #fff;
}

.swiper-pagination-bullet {
    background-color: #4a1f5c;
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: #0066b3;
    opacity: 1;
}

/* Footer */
.footer {
    background-color: #4a1f5c;
    color: #fff;
    padding: 60px 0 30px;
}

.footer h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: bold;
}

.footer-block {
    margin-bottom: 25px;
}

.footer-block strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-block p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.footer-block a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #fdb913;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fdb913;
}

.overlay{display:none;background:rgba(0,0,0,0.8);position:fixed;left:0;top:0;width:100%;height:100%;z-index:99999998}
.modal{
    display:none;
    position:fixed;
    left:50%;
    top:50%;
    width: 360px;
    margin: -260px 0 0 -260px;
    background:#fff;
    padding:30px;
    z-index:99999999;
    text-align: center;
    height: auto;
}
.modal .close{position:absolute;right:5px;top:5px;font-size:22px;padding:5px;cursor:pointer}
.modal .close:hover{opacity:.6}
.modal h2{padding-left: 0;margin-top: 0}
.form-group{margin: 30px 0}
.form-group-inner {display: flex; width: 100%;justify-content: space-between;align-items: center;}
.form-group .form-control {margin-top: 6px}
.modal .tr_btn{background: #93030B;border-radius: 6px;color: white;transition: .5s;width: 249px;height: 63px;line-height: 63px;text-align: center;cursor: pointer;border: none;font-size: 18px;transition: .5s}
.modal .tr_btn:hover{background: #151619;transition: .5s}
.form-control::-moz-placeholder{color:#999}
.form-control::-webkit-input-placeholder{color:#999}
.form-control:-ms-input-placeholder{color:#999}
.form-control::-ms-input-placeholder{color:999}
.form-control::placeholder{color:#999}
input{outline: none}
input:focus{border-color: #93030B}
.modal .icon-cancel{color: #999;transition: .5s}
.modal .icon-cancel:hover{color: black;transition: .5s}
.modal-inner .orng {border: none;font-size: 15px;}
.modal-inner input{width: 100%;border: 1px solid #ccc;}
#callback form{display: flex;flex-direction: column;}

/* Responsive Mobile */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    
    .hero-card {
        flex-direction: column;
        text-align: center;
        border-radius: 40px;
        padding: 25px;
    }
    
    .hero-card-image img {
        width: 180px;
        height: 147px;
    }
    
    .hero-card-content {
        flex-direction: column;
        padding: 20px 0 0;
        gap: 15px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .service-item {
        margin-bottom: 35px;
        text-align: left;
        flex-direction: row;
    }
    .service-item-right{
        flex-direction: row-reverse !important;
    }
    .phone-mockup {
        max-width: 180px;
        margin: 30px auto;
    }
}

@media (max-width: 767px) {
    .top-header {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .header-contact-item {
        font-size: 12px;
        justify-content: center;
        margin-bottom: 8px;
    }
    
    .hero {
        padding: 50px 0 40px;
    }
    
    .hero-logo {
        max-width: 140px;
    }
    .project-image img{
        width: 170px;
        height: 170px;
    }
    .project-name h4{
        font-size: 16px;
    }
    .design-section,
    .philosophy-section,
    .markets-section,
    .services-section,
    .projects-section,
    .partners-section,
    .footer {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .design-section h2 {
        font-size: 28px;
    }
    
    .market-image img {
        width: 140px;
        height: 140px;
    }
    
    .projectsSwiper,
    .partnersSwiper {
        padding: 20px 40px 40px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .hero-card-image img {
        width: 180px;
        height: 150px;
    }
    .design-image{
        background-image: none;
    }
    .hero-card-content h3 {
        font-size: 18px;
    }
    .service-item-right{
        flex-direction: column !important;
        text-align: center !important;
    }
    .market-image img {
        width: 110px;
        height: 110px;
    }
    
    .market-item p {
        font-size: 13px;
    }
    
    .service-item,
    .service-item-right {
        flex-direction: column;
        text-align: center;
    }
    
    .service-content {
        text-align: center !important;
    }
    
    .service-icon {
        margin: 0 auto 15px !important;
    }
    
    .philosophy-card {
        padding: 30px 25px;
    }
    
    .section-title {
        font-size: 28px;
    }
}