@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');
:root {
    --bg-dark: #091625;    
    --primary-teal: #027A5B; 
    --text-light: #ffffff;
    --text-muted: #94A3B8;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
body {
    font-family: 'Inter', sans-serif;
    color: #333333;
    overflow-x: hidden;
}
h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', serif;
}

.custom-navbar {
    background-color: var(--bg-dark) !important;
    padding: 1.25rem 0;
}
.custom-navbar .nav-link {
    color: #CBD5E1 !important;
    font-size: 0.95rem;
}
.custom-navbar .nav-link:hover {
    color: #ffffff !important;
}
.btn-teal {
    background-color: var(--primary-teal);
    color: #ffffff !important;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s;
}
.btn-teal:hover {
    background-color: #02634A;
}

.hero-section {
    background-color: var(--bg-dark);
    min-height: calc(100vh - 80px);
    padding: 6rem 0;
}

.hero-subtitle {
    color: #00F5D4;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-title {
    line-height: 1.2;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    background-color: #334155;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}
.slider-dots .dot.active {
    width: 24px;
    background-color: #00F5D4;
    border-radius: 4px;
}

.hero-image-wrapper {
    position: relative;
}
.hero-img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    height: 480px;
}

.slider-arrows {
    bottom: 20px;
    right: 20px;
    z-index: 10;
}
.arrow-btn {
    background: rgba(9, 22, 37, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}
.arrow-btn:hover {
    background: var(--primary-teal);
}
/* --- ABOUT US SECTION STYLING --- */
.bg-light { 
    background-color: #F8FAFC !important;
}

.text-teal { 
    color: var(--primary-teal) !important; 
}
.section-indicator {
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border: 1px solid #BEE3F8;
    border-radius: 20px;
    background-color: rgba(2, 122, 91, 0.05); 
}
.sni-badge {
    background-color: var(--primary-teal);
    bottom: -30px;
    left: -40px;
    max-width: 260px;
    border-radius: 8px;
    z-index: 2;
}
@media (max-width: 991px) {
    .sni-badge {
        bottom: 15px;
        left: 15px;
        max-width: 200px;
    }
}
/* --- SERVICES SECTION STYLING --- */
.section-indicator-dark {
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border: 1px solid rgba(2, 122, 91, 0.4);
    border-radius: 20px;
    background-color: rgba(2, 122, 91, 0.1); 
}
.service-card {
    background-color: #0E2238; 
    border: 1px solid #1A334F; 
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-teal); 
}

.service-link {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #00F5D4 !important; 
}
/* --- PRODUCTS SECTION STYLING --- */
.product-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.badge-teal-light {
    background-color: rgba(2, 122, 91, 0.1);
    font-weight: 500;
    border-radius: 4px;
}

.product-link {
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.product-link span {
    transition: transform 0.3s ease;
}

.product-link:hover {
    color: #025942 !important; 
}

.product-link:hover span {
    transform: translateX(4px);
}
/* --- CONTACT SECTION STYLING --- */

.custom-input {
    background-color: #F1F5F9;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: #FFFFFF;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(2, 122, 91, 0.15);
    outline: none;
}

.custom-input::placeholder {
    color: #94A3B8;
}
.custom-submit-btn {
    background-color: #0E7356;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 6px;
}

.custom-submit-btn:hover {
    background-color: #09503C;
    transform: translateY(-2px);
}
label {
    margin-bottom: 0.4rem;
}
.contact-item-wrapper {
    padding: 10px;
    border-radius: 8px;
    margin-left: -10px;
    transition: all 0.3s ease;
    background-color: transparent;
    cursor: pointer;
}

.contact-item-wrapper:hover {
    background-color: #ffffff;
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.contact-icon-box {
    width: 40px; 
    height: 40px; 
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.contact-item-wrapper:hover .contact-icon-box {
    background-color: var(--primary-teal);
    color: #ffffff !important;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 15px rgba(2, 122, 91, 0.2);
}
.contact-item-wrapper p {
    transition: color 0.3s ease;
}

.contact-item-wrapper:hover p {
    color: var(--primary-teal) !important;
}
.mytoast{
    top: 20px; 
    right: 20px; 
    z-index: 9999; 
    display: flex; 
    flex-direction: column; 
    gap: 10px;
}
.card {
    display: flex;
    flex-direction: column;
}
#contactForm {
    margin-bottom: 0;
}
/* HAMBUGER */
.custom-navbar {
    padding-left: 1rem;
    padding-right: 1.0rem;
}
.hamburger-icon line {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.hamburger-icon.is-open line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.hamburger-icon.is-open line:nth-child(2) {
    opacity: 0;
}
.hamburger-icon.is-open line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
@media (max-width: 991.98px) {
    .navbar-collapse-custom {
        background-color: #111827;
        padding: 1.25rem;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        margin-top: 0.75rem;
        width: 100%;
    }
}
