:root {
    --primary: #f5a425;
    --dark: #1a1a1a;
    --darker: #111111;
    --gray: #f5f5f5;
    --text: #666666;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Top Bar */
.top-bar {
    font-size: 13px;
}

/* Navbar */
.navbar {
    padding: 15px 0;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333 !important;
    padding: 10px 15px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* Navbar consistency across all pages */
.navbar-light .nav-link {
    color: #333 !important;
}
.navbar-light .nav-link.active {
    color: var(--primary) !important;
}

.btn-warning {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-warning:hover {
    background-color: #e09420 !important;
    border-color: #e09420 !important;
}

.btn-outline-warning {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline-warning:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245,164,37,0.3);
}

.btn-warning {
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245,164,37,0.35);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 10px;
}

.section-title .subtitle {
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin-top: 15px;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

.service-card .service-image {
    position: relative;
    overflow: hidden;
    height: 260px;
    border-radius: 16px;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-image img {
    transform: scale(1.12);
}

.service-card .service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,26,30,0.95) 0%, rgba(26,26,30,0.6) 50%, rgba(0,0,0,0) 100%);
    padding: 30px 24px 24px;
    color: white;
    border-radius: 0 0 16px 16px;
    transition: all 0.4s ease;
}

.service-card:hover .service-overlay {
    padding-bottom: 30px;
}

.service-card .service-overlay h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
}

.service-card .service-overlay span {
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.service-item {
    background: white;
    padding: 40px 35px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.service-item:hover {
    border-color: transparent;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    transform: translateY(-12px);
    background: linear-gradient(180deg, #fff 0%, #fffbf5 100%);
}

.service-item .service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, #e09420 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(245,164,37,0.35);
    transition: transform 0.4s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.08) rotate(-4deg);
}

.service-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-item p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
    color: #888;
}

.service-item .btn-outline-warning {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 22px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: transparent;
}

.service-item .btn-outline-warning:hover {
    background: var(--primary);
    color: white !important;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(245,164,37,0.4);
}

/* About Section */
.about-section {
    background: var(--gray);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Stats */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d3a 100%);
    padding: 90px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(245,164,37,0.05);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 18px;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,164,37,0.12);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover i {
    background: var(--primary);
    color: white;
    transform: translateY(-5px) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(245,164,37,0.3);
}

.stat-item h3 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Projects */
.project-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 16px 16px 0 0;
}

.project-card:hover img {
    transform: scale(1.12);
}

.project-card .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,26,30,0.95) 0%, rgba(26,26,30,0.6) 50%, rgba(0,0,0,0) 100%);
    padding: 30px 24px 24px;
    color: white;
    transform: translateY(60px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 0 0 16px 16px;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.project-overlay span {
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.project-overlay .btn {
    border-radius: 30px;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 15px rgba(245,164,37,0.3);
    transition: all 0.3s ease;
}

.project-overlay .btn:hover {
    box-shadow: 0 6px 20px rgba(245,164,37,0.5);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 50px 40px 40px 45px;
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 120px;
    color: var(--primary);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card p {
    font-style: italic;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #555;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 18px;
    border: 3px solid rgba(245,164,37,0.2);
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    border-color: var(--primary);
}

.testimonial-author h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #e09420 100%);
    padding: 90px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.cta-section h2 {
    color: white;
    font-weight: 800;
    font-size: 2.6rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta-section .btn {
    border-radius: 30px;
    padding: 14px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.cta-section .btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* Footer */
.footer {
    background: #1a1a1a !important;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    padding: 2px 0;
}

.footer-links a:hover {
    color: var(--primary) !important;
    padding-left: 8px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245,164,37,0.35);
}

/* Breadcrumb */
.breadcrumb-area {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    color: white;
}

.breadcrumb-content h1 {
    color: white;
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
}

/* Service Detail */
.service-sidebar {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 16px;
}

.service-sidebar h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-sidebar ul {
    list-style: none;
    padding: 0;
}

.service-sidebar ul li {
    border-bottom: 1px solid #eee;
}

.service-sidebar ul li a {
    display: block;
    padding: 14px 0;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 0;
}

.service-sidebar ul li a:hover,
.service-sidebar ul li a.active {
    color: var(--primary);
    padding-left: 12px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #e09420 100%);
    padding: 35px;
    color: white;
    margin-top: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(245,164,37,0.3);
}

.sidebar-cta h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.sidebar-cta .btn {
    border-radius: 30px;
    padding: 8px 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: 2px solid white;
    background: transparent;
    color: white;
    transition: all 0.3s ease;
}

.sidebar-cta .btn:hover {
    background: white;
    color: var(--primary);
}

.working-hours {
    background: white;
    padding: 35px;
    margin-top: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.working-hours h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.working-hours ul {
    list-style: none;
    padding: 0;
}

.working-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.working-hours ul li:hover {
    color: var(--primary);
}

/* Contact */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-item i {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, #e09420 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(245,164,37,0.3);
    transition: transform 0.3s ease;
}

.contact-info-item:hover i {
    transform: scale(1.08);
}

.contact-form .form-control {
    border-radius: 12px;
    padding: 14px 18px;
    border: 1px solid #e8e8e8;
    background: #fafafa;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(245,164,37,0.12);
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

/* Partners */
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.partner-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-slider,
    .hero-slide {
        height: 400px;
    }
    
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-item h3 {
        font-size: 32px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* ================= Modern Additions ================= */
html { scroll-behavior: smooth; }

/* Navbar Scroll Effect */
.navbar.sticky-top.scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

/* Card Lift Effect */
.card-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.card-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Glow Border */
.glow-border {
    position: relative;
    overflow: hidden;
}
.glow-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px solid transparent;
    transition: border-color 0.4s ease;
    pointer-events: none;
}
.glow-border:hover::before {
    border-color: var(--primary);
}

/* Button Arrow Slide */
.btn-slide {
    position: relative;
    overflow: hidden;
}
.btn-slide i {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.btn-slide:hover i {
    transform: translateX(5px);
}

/* Image Reveal Overlay */
.img-reveal {
    position: relative;
    overflow: hidden;
}
.img-reveal::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.img-reveal:hover::after {
    opacity: 0.1;
}

/* Stats Counter Animation */
.counter-value {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

/* Parallax Class */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Section Pattern */
.pattern-dots {
    background-image: radial-gradient(circle, #ddd 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Gradient Overlay */
.gradient-overlay {
    position: relative;
}
.gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Top Bar Enhancement */
.top-bar a:hover {
    color: var(--primary) !important;
    transition: color 0.3s;
}

/* Smooth Image Zoom */
.img-zoom {
    overflow: hidden;
}
.img-zoom img {
    transition: transform 0.8s ease;
}
.img-zoom:hover img {
    transform: scale(1.08);
}

/* Shimmer Loading (for lazy images) */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}
.shimmer {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(to right, #f6f7f8 4%, #edeef1 25%, #f6f7f8 36%);
    background-size: 1000px 100%;
}

/* Modern Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary);
    content: ">";
    font-weight: 700;
}

/* Enhanced Form Inputs */
.form-control-lg-custom {
    padding: 15px 20px;
    border-radius: 0;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}
.form-control-lg-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 164, 37, 0.15);
}

/* Social Icon Hover */
.social-icon-hover {
    transition: transform 0.3s ease, background 0.3s ease;
}
.social-icon-hover:hover {
    transform: translateY(-3px) rotate(5deg);
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Underline */
.animated-underline {
    position: relative;
    display: inline-block;
}
.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.4s ease;
}
.animated-underline:hover::after {
    width: 100%;
}

/* Hero Text Animation Stagger */
.hero-content h1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}
.hero-content p {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}
.hero-content .btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}
.animate-fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

/* Project Card Enhanced */
.project-card {
    border-radius: 0;
    overflow: hidden;
}
.project-card img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card:hover img {
    transform: scale(1.1);
}
.project-card .project-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    transform: translateY(100%);
    padding-bottom: 30px;
}

/* Service Item Enhanced — unified with main styles above */

/* Testimonial Enhanced */
.testimonial-card {
    position: relative;
    border-left: none;
    border-bottom: 4px solid var(--primary);
    transition: transform 0.4s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

/* CTA Enhanced */
.cta-section {
    position: relative;
    overflow: hidden;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

/* Footer Enhanced */
.footer {
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

/* Scroll to top button enhanced */
.btn-scroll-top {
    transition: all 0.3s ease !important;
}
.btn-scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(245, 164, 37, 0.3);
}

/* ================= Ultra Modern Additions ================= */

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Hero Enhanced */
.hero-slide {
    background-attachment: fixed;
}
.hero-slide::before {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-content h1,
.hero-content p {
    color: #fff;
}
.hero-content h1 {
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}
.hero-content .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-content .btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: rgba(255,255,255,0.15);
    transition: width 0.4s ease;
    z-index: -1;
}
.hero-content .btn:hover::before {
    width: 100%;
}
.hero-content .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 164, 37, 0.4);
}

/* Carousel Controls */
.carousel-control-prev, .carousel-control-next {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: 50%; transform: translateY(-50%);
    transition: all 0.3s ease;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
    background: var(--primary);
}

/* Modern Section Separators */
.section-separator {
    position: relative;
}
.section-separator::before {
    content: '';
    position: absolute;
    top: -60px; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to bottom right, transparent 49%, white 50%);
}

/* Gradient Text Modern */
.text-gradient-modern {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c00 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Modern Button Styles */
.btn-modern {
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-modern::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.btn-modern:hover::after {
    width: 300px; height: 300px;
}
.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 164, 37, 0.35);
}

/* Pulse Animation for Icons */
.pulse-icon {
    position: relative;
}
.pulse-icon::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Floating Shapes for decorative backgrounds */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.05;
    animation: floatShape 8s ease-in-out infinite;
}
@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Smooth section entrance */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Info Item Enhanced */
.contact-info-item {
    background: white;
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
.contact-info-item:hover {
    border-left-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.contact-info-item i {
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.contact-info-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* Map Section */
.map-section {
    position: relative;
    overflow: hidden;
}
.map-section iframe {
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.4s ease;
}
.map-section:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* Dark overlay with diagonal clip */
.diagonal-overlay {
    position: relative;
    overflow: hidden;
}
.diagonal-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 1;
}

/* Elegant Border Trace Effect - full card border on hover */
.border-trace {
    position: relative;
}
.border-trace::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px solid var(--primary);
    opacity: 0;
    transform: scale(0.98);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 5;
}
.border-trace:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Service Card */
.service-card.border-trace::before {
    z-index: 10;
}

/* Project Card */
.project-card.border-trace::before {
    z-index: 10;
}

/* Testimonial Card */
.testimonial-card.border-trace:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245,164,37,0.12);
}

/* Service Item */
.service-item.border-trace:hover {
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(245,164,37,0.08);
}
