:root {
  --bg-color: #E5EBF5; 
  --menu-bg: #F2F5FA;
  --text-color: #243957;
  --accent-color: #FC5A2F;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

*::-webkit-scrollbar {
    width: 12px
}
*::-webkit-scrollbar-track {
    background: #243957;
}
*::-webkit-scrollbar-thumb {
    background-color: #7F9ECC;
    border-radius: 20px;
    border: 3px solid #243957
}



body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-3xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

/* Oswald Font Utilities */
.font-oswald { font-family: 'Oswald', sans-serif; }
.oswald-extralight { font-family: 'Oswald', sans-serif; font-weight: 200; }
.oswald-light { font-family: 'Oswald', sans-serif; font-weight: 300; }
.oswald-regular { font-family: 'Oswald', sans-serif; font-weight: 400; }
.oswald-medium { font-family: 'Oswald', sans-serif; font-weight: 500; }
.oswald-semibold { font-family: 'Oswald', sans-serif; font-weight: 600; }
.oswald-bold { font-family: 'Oswald', sans-serif; font-weight: 700; }

header {
    padding: 20px 0;
    background: rgb(229 235 245 / 31%);
    backdrop-filter: blur(20px);
}

header.uk-sticky.uk-sticky-fixed.uk-active.uk-sticky-below {
    padding: 10px 0;
}

.logo {
    display: block;
}

.logo img {
    width: 220px;
}

.custom-nav {
  display: flex;
  justify-content: center;
  width: 100%;
}

.pill-menu {
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.pill-menu a {
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}

.pill-menu a:hover {
  color: var(--accent-color);
  transform: translateY(-1px);
}

.pill-menu a:active {
    transform: translateY(0);
}

/* Contact Block Styles */
.contact-block {
    background: #003d9a;
    border-radius: 8px;
    padding: 6px 12px;
    display: flex;
    gap: 6px;
    align-items: center;
    color: #ffffff;
}


.contact-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1); /* Make icons white */
    transition: transform 0.2s ease;
    display: block;
}

.contact-icon:hover img {
    transform: scale(1.1);
}

.divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
}

.contact-phone:hover {
    color: var(--accent-color);
}

.contact-phone img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

.contact-phone:hover img {
    transform: scale(1.1);
}

/* Custom Card */
a.custom-card,
.custom-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    background: #F2F5FA;
    border-radius: 16px;
    padding: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.custom-card-image {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.custom-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.custom-card-body {
    padding: 16px 4px 4px;
}

.custom-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #243957;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.custom-card-text {
    font-size: 14px;
    color: #6b7a8d;
    margin: 0;
    line-height: 1.4;
    font-weight: 300;
}

.custom-card-arrow {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    background: #f2f5fa;
    max-height: 32px !important;
    border-radius: 0px 0px 0px 8px;
    transition: all 0.2s 
ease;
    padding: 4px;
}

.custom-card:hover .custom-card-arrow {
    opacity: 0.5;
}

/* Contact Bar */
.contact-bar {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    background: linear-gradient(-45deg, #f2f5fa, #e5ebf5, #d5dbe5, #f2f5fa);
    background-size: 400% 400%;
    animation: contact-bar-bg 10s ease infinite;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 16px;
}

.contact-bar-number {
    font-size: 24px;
    font-weight: 700;
    color: #2c3550;
    letter-spacing: 0.5px;
    margin-right: 12px;
}

.contact-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f2f5fa;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.contact-bar-icon:hover {
    background: #d5dbe5;
}

.contact-bar-icon img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}

.contact-bar-icon:hover img {
    transform: scale(1.1);
}

.contact-bar-label {
    flex-basis: 100%;
    font-size: 14px;
    color: #6b7a8d;
    border-top: 1px dashed rgb(0 0 0 / 11%);
    padding-top: 10px;
    margin-top: 6px;
}

.uk-heading-line>::after, .uk-heading-line>::before {
    border-bottom: calc(.2px + .05em) dashed rgb(0 0 0 / 11%);
}

.uk-grid-divider>:not(.uk-first-column)::before {
    border-left: 1px dashed rgb(0 0 0 / 11%);
}

.uk-grid-divider.uk-grid-stack>.uk-grid-margin::before {
    border-top: 1px dashed rgb(0 0 0 / 11%);
}

.section-body {
    padding: 30px;
    background: #f2f5fa;
    border-radius: 20px;
    margin: 0 -20px;
}

/* Slideshow */
.slideshow-wrapper {
    margin-top: 16px;
}

.slideshow-wrapper .uk-slideshow-items {
    border-radius: 16px;
    min-height: 400px;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 44px;
    height: 44px;
    background: rgba(30, 60, 114, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.slideshow-nav:hover {
    background: rgba(30, 60, 114, 0.85);
}

.slideshow-nav-prev {
    left: 16px;
}

.slideshow-nav-next {
    right: 16px;
}

.slideshow-wrapper .uk-dotnav > * > * {
    width: 10px;
    height: 10px;
    border: none;
    background: #c5cdd8;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.slideshow-wrapper .uk-dotnav > .uk-active > * {
    background: #1a56ad;
    width: 28px;
    border-radius: 5px;
}

.tile {
    background: #f2f5fa;
    padding: 20px;
    border-radius: 20px;
}

/* Color Chip */
.color-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #e5ebf5;
    border-radius: 16px;
    padding: 10px;
}

.color-chip-images {
    display: flex;
    gap: 6px;
}

.color-chip img {
    width: 60px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

img.bears {
    width: 40px;
    height: 40px;
    border-radius: 0;
    object-fit: cover;
}

.color-chip span {
    font-size: 14px;
    font-weight: 600;
    color: #2c3550;
    white-space: nowrap;
}

.uk-button-primary {
    background-color: #FC5A2F;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.uk-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 2.5s infinite;
}

/* Advantage Card */
.advantage-card {
    background: #F2F5FA;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
}

.advantage-icon {
    width: 40px;
    height: 40px;
    display: block;
}

/* Footer */
.footer-wrapper {
    background: linear-gradient(180deg, #003d9a 0%, #243957 100%);
    color: #ffffff;
    padding: 60px 0;
    margin-top: 40px;
    border-radius: 20px 20px 0 0;
}

.footer-panel {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden; /* To keep border radius with child bg if needed */
}

.footer-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-header-col {
    padding: 16px 30px;
    font-weight: 600;
    font-size: 14px;
}

.footer-col-inner {
    padding: 30px;
}

.footer-border-right {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-border-left {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-text-muted {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-bottom: 5px;
}

.footer-text-main {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.footer-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}


.uk-border-rounded {
    border-radius: 20px;
}

.bg-pattern {
    background-image: url(../img/pattern.png);
}



/* Play Button Animation */
.play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    position: relative;
    text-decoration: none;
    z-index: 10;
    margin: 25px; /* Offset to prevent shadow clipping */
}

.play-button:before, .play-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 1px solid var(--accent-color);
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: wanimate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.play-button:after {
    animation-delay: .5s;
}

.play-button-icon {
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid var(--accent-color);
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.play-button:hover .play-button-icon {
    transform: scale(1.1);
}



/* Ornament Animation */
.ornament-icon {
    animation: float-ornament 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes float-ornament {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

.callback-close {
    padding: 15px;
    transition: transform 0.3s ease;
    color: #fff;
    background: #243957;
    border-radius: 8px;
}

.uk-offcanvas-close {
    position: absolute;
    z-index: 1000;
    top: 8px;
    right: 8px;
    padding: 12px;
    color: #fff;
    border-radius: 8px;
    background: #2D476E;
}

.uk-offcanvas-bar {
    background: #243957;
    border-radius: 20px 0px 0px 20px;
}



.text-gradient {
  background-image: linear-gradient(to right, #003d9a 0%, #243957 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uk-hr, hr {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Callback Modal Styles */
.callback-modal {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.callback-close {
    padding: 15px;
    transition: transform 0.3s ease;
}

.callback-close:hover {
    transform: rotate(90deg);
}

.callback-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.uk-modal-title {
    font-size: 1.5rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.callback-input {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 0 20px;
    height: 50px;
    font-family: 'Roboto', sans-serif;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.callback-input:focus {
    border-color: var(--accent-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(252, 90, 47, 0.1);
}

.callback-btn {
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(252, 90, 47, 0.3);
}

.callback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(252, 90, 47, 0.4);
}

/* Custom Buttons */
.uk-button {
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.uk-button-primary {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(252, 90, 47, 0.3);
}

.uk-button-primary:hover,
.uk-button-primary:focus {
    background-color: #e04a22;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(252, 90, 47, 0.4);
}

.uk-button-secondary {
    background-color: #243957;
    color: #fff;
    box-shadow: 0 4px 10px rgba(36, 57, 87, 0.3);
}

.uk-button-secondary:hover,
.uk-button-secondary:focus {
    background-color: #1a2a40;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(36, 57, 87, 0.4);
}

.uk-button-default {
    background-color: #fff;
    color: var(--text-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.uk-button-default:hover,
.uk-button-default:focus {
    background-color: #f8fafc;
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}










@media (max-width: 640px) {

    body {
        min-width: 340px;
    }

    header {
        padding: 10px 0;
    }

    .logo img {
        width: 100px;
    }

    .contact-block {
        border-radius: 8px;
        padding: 4px 4px;
        display: flex;
        gap: 4px;
    }

    .footer-btn {
        font-size: 16px;
    }
    .play-button {
        width: 50px;
        height: 50px;
        margin: 10px;
    }

    .play-button:before, .play-button:after {
        left: -10px;
        right: -10px;
        top: -10px;
        bottom: -10px;
    }

    .play-button-icon {
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 16px solid var(--accent-color);
        margin-left: 4px;
        transition: transform 0.2s ease;
    }



    /* Mobile Footer Borders */
    .footer-border-right,
    .footer-border-left {
        border-right: none;
        border-left: none;
    }

    .footer-border-bottom-s {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-col-inner {
        padding: 20px 15px;
    }

    .section-body {
        padding: 20px;
        background: #f2f5fa;
        border-radius: 20px;
        margin: 0;
    }

.contact-bar-number {
        font-weight: 700;
        color: #2c3550;
        letter-spacing: 0.5px;
        width: 100%;
        margin-right: 4px;
    }
}



.wa-button {
	position: fixed;
	right: 13px;
	bottom: 30px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	z-index: 9999;
	background: url(../img/wa.gif) 50% 50%;
	background-size: 62px;
}
.wa-button:before,.wa-button:after {
	content: " ";
	display: block;
	position: absolute;
	border: 50%;
	border: 1px solid #25D366;
	left: -20px;
	right: -20px;
	top: -20px;
	bottom: -20px;
	border-radius: 50%;
	animation: wanimate 1.5s linear infinite;
	opacity: 0;
	backface-visibility: hidden; 
}
.wa-button:after{
	animation-delay: .5s;
}
@keyframes wanimate{
	0%{transform: scale(0.5);opacity: 0;}
	50%{opacity: 1;}
	100%{transform: scale(1.2);opacity: 0;}
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

@keyframes contact-bar-bg {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.uk-modal-dialog {
    border-radius: 14px;
}

.uk-modal-footer {
    border-radius: 20px;
}

/* Video Modal Responsive Container */
.video-responsive-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-responsive-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}