@charset "UTF-8";
/* CSS Document */

/* Navbar Section */
.navbar img,
.navbar .nav-item,
.navbar .btn-outside-popup,
.navbar-toggler {
    opacity: 1;
    animation: none !important;
}

/* Header Section */
.header-section {
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-bg);
}

.header-content {
    width: 100%;
    height: 100%;
}

.header-text {
    width: 100%;
    padding: var(--space-xl);
}

.header-text h1 {
    color: var(--color-secondary);
    margin-bottom: var(--space-xs);
    text-shadow: 2px 2px 4px var(--color-shadows);
}


.header-image {
    width: 100%;
    height: 100%;
    padding: var(--space-xl);
}

.header-image .image-section {
    position: relative;
    width: 525px;
    height: 275px;
}

.header-image .img-box {
    position: absolute;
    width: 500px;
    height: 250px;
    top: 0;
    left: 0;
    border-radius: var(--border-secondary-radius);
    box-shadow: var(--shadow-secondary) var(--shadow-tertiary) var(--shadow-secondary) var(--color-shadows);
    overflow: hidden;
    z-index: 2;
    transition: 0.3s ease-in-out;
}

.header-image .img-box:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-tertiary) var(--shadow-quarternary) var(--shadow-secondary) var(--color-shadows);
}

.header-image .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

.header-image .img-box img:hover {
    transform: scale(1.05);
}

.header-image .bg-box {
    position: absolute;
    width: 60%;
    height: 50%;
    right: 0;
    bottom: 0;
    border-radius: var(--border-secondary-radius);
    background: var(--color-quarternary-bg-gradient);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
    z-index: 1;
}

@media screen and (min-width: 1536px) {
    
    .header-image .image-section {
        width: 600px;
        height: 375px;
    }
    
    .header-image .img-box {
        width: 575px;
        height: 350px;
    }
}

@media screen and (max-width: 1199.98px) {

    .header-text {
        padding: var(--space-m);
    }

    .header-image {
        padding: var(--space-m);
    }
    
  .header-image .image-section {
        width: 100%;
        height: 300px;
    }
    
    .header-image .img-box {
        width: 95%;
        height: 275px;
    }
}

@media screen and (max-width: 767.98px) {
    
    .header-content {
        flex-direction: column !important;
    }

    .header-text {
        width: 100%;
        padding: var(--space-s);
    }

    .header-image {
        padding: var(--space-s);
    }

    .header-image .image-section {
        width: 100%;
        height: 220px;
    }
    
    .header-image .img-box {
        width: 95%;
        height: 200px;
    }
}

/*services Section */
.services-section {
    background-color: var(--color-secondary-bg);
    padding: var(--space-xl) 0;
}

.bento-services {
    width: 100%;
    height: 250px;
    gap: var(--space-s);
}

.bento-services .services-row {
    flex: 1 1 0;
    gap: var(--space-s);
}

.bento-services .services-row .col {
    flex: 1 1 0;
    border-radius: var(--border-secondary-radius);
    background: var(--color-tertiary-bg-gradient);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
    transition: 0.3s ease-in-out;
}

.bento-services .services-row .col:hover {
    transform: scale(1.05);
    box-sizing: var(--shadow-secondary) var(--shadow-secondary) var(--shadow-tertiary) var(--color-shadows);
}

.bento-services .services-row .col a {
    text-decoration: none;
}

.bento-services .services-row .col h6 {
    color: var(--color-secondary-text);
}

.bento-services .services-row .col h6:hover {
    color: var(--color-primary);
}

.bento-services-2 {
    width: 100%;
    height: 113px;
    gap: var(--space-s);
}

.bento-services-2 .inner-col {
    flex: 1 1 0;
}

.bento-services-2 .inner-col:nth-of-type(2) {
    border-radius: var(--border-secondary-radius);
    background: var(--color-tertiary-bg-gradient);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
    transition: 0.3s ease-in-out;
}

.bento-services-2 .inner-col:nth-of-type(2):hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-secondary) var(--shadow-secondary) var(--shadow-tertiary) var(--color-shadows);
}

.bento-services-2 .inner-col:nth-of-type(2) a {
    text-decoration: none;
    color: var(--color-secondary-text);
}

.bento-services-2 .inner-col:nth-of-type(2) a > h6:hover {
    color: var(--color-primary);
}

@media screen and (max-width: 991.98px) {
    
    .bento-services-2 .inner-col:nth-of-type(1),
    .bento-services-2 .inner-col:nth-of-type(3) {
        display: none;
    }
}

@media screen and (max-width: 767.98px) {
    
    .bento-services {
        height: 600px;
        flex-direction: column !important;
        padding: 0 var(--space-s);
    }

    .bento-services .services-row {
        flex-direction: row !important;
    }

    .bento-services-2 {
        height: 157px;
        padding: 0 var(--space-s);
    }
}

/* Services Wrapper */
.services-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100%;
    margin-bottom: var(--space-s);
    overflow: hidden;
}

.services-wrapper .gradient-left,
.services-wrapper .gradient-right {
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.services-wrapper .gradient-left {
    left: 0;
    background: linear-gradient(to right, var(--color-secondary-bg) 0%, transparent 100%);
}

.services-wrapper .gradient-right {
    right: 0;
    background: linear-gradient(to left, var(--color-secondary-bg) 0%, transparent 100%);
}

.services-wrapper .services-container {
    display: flex;
    gap: var(--space-s);
    overflow-x: auto;
    padding: var(--space-s) 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: none;
    -webkit-overflow-scrolling: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

.services-wrapper .services-container:-webkit-scrollbar {
    display: none;
}

.services-wrapper .services-container .services-item {
    flex-shrink: 0;
    width: 350px;
    height: 350px;
    border-radius: var(--border-secondary-radius);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
    overflow: hidden;
    user-select: none;
    transition: 0.3s ease-in-out;
}

.services-wrapper .services-container .services-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-secondary) var(--shadow-secondary) var(--shadow-tertiary) var(--color-shadows);
}

.services-wrapper .services-container .services-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

@media screen and (max-width: 767.98px) {

    .services-wrapper .gradient-left,
    .services-wrapper .gradient-right {
        width: 30px;
    }
    
    .services-wrapper .services-container .services-item {
        width: 250px;
        height: 250px;
    }
}