@charset "utf-8";
/*------------------------------------------------------------------
[Master Stylesheet]


-------------------------------------------------------------------*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,300,700);
@import url(https://fonts.googleapis.com/css?family=Dosis:300,400,700);

/*------------------------------------------------------------------
[Color codes]

Primary: Stone color palette
Secondary: Neutral color palette
Dark Mode Theme
-------------------------------------------------------------------*/

/* ==============================
   Common styles
   ============================== */
  
body {
    color: #f5f5f4;
    font-size: 14px;
    font-family: "Open Sans", arial, sans-serif;
    line-height: 1.6;
    background-color: #1c1917;
}

a {
    color: #d6d3d1;
    text-decoration: underline;
    transition: all 0.3s ease;
}

a:hover {
    color: #f5f5f4;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Dosis", arial, sans-serif;
    font-weight: 400;
    color: #f5f5f4;
}

/* Buttons */
.btn-mod {
    border: 2px solid;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-mod.btn-border-w {
    border-color: rgba(245, 245, 244, 0.7);
    color: #f5f5f4;
    background: transparent;
}

.btn-mod.btn-border-w:hover {
    background: #f5f5f4;
    color: #1c1917;
    border-color: #f5f5f4;
}

.btn-mod.btn-color {
    background: #78716c;
    border-color: #78716c;
    color: #f5f5f4;
}

.btn-mod.btn-color:hover {
    background: #57534e;
    border-color: #57534e;
}

/* Sections */
.home-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-section {
    padding: 80px 0;
}

/* Dark overlays */
.bg-dark-alfa-90:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 25, 23, 0.9);
}

/* Typography */
.font-alt {
    font-family: "Dosis", arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.section-heading {
    font-size: 2.5rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 2px;
    background: #737373;
    margin: 20px auto;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d6d3d1;
}

/* Features and Services */
.features-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.alt-features-item {
    padding: 30px;
    transition: all 0.3s ease;
}

.alt-features-item:hover {
    background: rgba(120, 113, 108, 0.1);
    border-radius: 10px;
}

/* Contact Form */
.form-control {
    background: rgba(40, 40, 40, 0.8) !important;
    border: 1px solid #404040 !important;
    color: #f5f5f4 !important;
    padding: 15px !important;
    border-radius: 5px !important;
}

.form-control:focus {
    border-color: #737373 !important;
    box-shadow: 0 0 0 2px rgba(115, 115, 115, 0.2) !important;
}
/* Portfolio Slider */
.portfolio-slider {
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.portfolio-item {
    background: #292524;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-content {
    padding: 20px;
}

.portfolio-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #f5f5f4;
}
.portfolio-description {
    color: #d6d3d1;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.portfolio-category {
    display: inline-block;
    background: #78716c;
    color: #f5f5f4;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Swiper Navigation */
.swiper-button-next, .swiper-button-prev {
    color: #a8a29e !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(28, 25, 23, 0.8);
    border-radius: 50%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #f5f5f4 !important;
    background: #78716c;
}

.swiper-pagination-bullet {
    background: #a8a29e !important;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    background: #f5f5f4 !important;
    opacity: 1 !important;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-heading {
        font-size: 1.8rem;
        letter-spacing: 0.2em;
    }
    
    .page-section {
        padding: 60px 0;
    }
    
    .btn-mod {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .home-section .hs-wrap {
        padding: 20px;
    }
    
    .hs-line-1 {
        font-size: 2rem !important;
        letter-spacing: 0.1em !important;
    }
    
    .hs-line-2 {
        font-size: 1.5rem !important;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #292524;
}

::-webkit-scrollbar-thumb {
    background: #78716c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #57534e;
}

/* Loading animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.animate-pulse {
    animation: pulse 2s infinite;
}