html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #333; }
.bg-primary { background-color: #1a365d; }
.bg-secondary { background-color: #2c5282; }
.text-primary { color: #1a365d; }
.text-secondary { color: #2c5282; }
.btn-primary {
    background-color: #eab308;
    color: #1a365d;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-secondary {
    background-color: #1a365d;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.card {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(234, 179, 8, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #eab308;
    font-size: 1.75rem;
}
.testimonial-card {
    background-color: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
.navbar {
    transition: all 0.3s;
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}
.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.gallery-item {
    overflow: hidden;
    border-radius: 0.75rem;
    position: relative;
}
.gallery-item img {
    transition: transform 0.5s;
    height: 280px;
    width: 100%;
    object-fit: cover;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: white;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.hero-overlay {
    background: linear-gradient(to right, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0.7) 100%);
}
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #eab308;
    border-radius: 2px;
}
.section-title-center:after {
    left: 50%;
    transform: translateX(-50%);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(234, 179, 8, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(234, 179, 8, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    font-size: 1.25rem;
    margin-right: 1rem;
}
#callUsButton {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #eab308;
    color: #1a365d;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s;
}
#callUsButton:hover {
    background: #f59e0b;
    transform: scale(1.1);
}
.mobile-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}
.mobile-menu.open {
    max-height: 500px;
}

/* Dropdown menu */
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    margin-top: 0.5rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 12rem;
    z-index: 50;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #1a365d;
    white-space: nowrap;
}
.dropdown-menu a:hover {
    background-color: #f3f4f6;
}

.before-after-container {
    position: relative;
    overflow: hidden;
}
.before-after-container img {
    display: block;
    width: 100%;
    height: auto;
}
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.before-after-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #eab308;
    pointer-events: none;
}
.before-after-range {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 10;
    -webkit-appearance: none;
}
.before-after-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #eab308;
    border: 2px solid #1a365d;
    cursor: pointer;
}
.before-after-range::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #eab308;
    border: 2px solid #1a365d;
    cursor: pointer;
}
