/* --- ======== BASIC SETUP & DARK MODE ======== --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; 
    scroll-behavior: smooth; 
}

/* --- Color Variables --- */
:root {
    --color-gold: #FFD700;
    --color-dark-gold: #DAA520;
    --color-black: #0a0a0a; /* Dark background */
    --color-black-secondary: #1a1a1a; /* Card background */
    --color-white: #ffffff;
    --color-grey: #f0f0f0; /* Light mode bg */
    --color-text: #cccccc; /* Lighter text for dark bg */
    --color-text-light: #333; /* Text for light mode */
    --color-border: #222; /* Border color */
    --color-border-light: #e0e0e0;
}

/* Lenis smooth scroll style */
html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto;
}

/* --- DEFAULT THEME IS DARK --- */
body {
    background-color: var(--color-black); 
    color: var(--color-text); 
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* This class is toggled by JS */
html.light-mode {
    background-color: var(--color-white);
    color: var(--color-text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ======== STEP 1: NAVBAR STYLING ======== --- */
.navbar {
    width: 100%;
    padding: 20px 0;
    background-color: rgba(10, 10, 10, 0.8); 
    border-bottom: 1px solid var(--color-border);
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(10px); 
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
html.light-mode .navbar {
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--color-border-light);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white); 
    text-decoration: none;
    transition: color 0.3s ease;
}
html.light-mode .logo {
    color: var(--color-black);
}

.logo span {
    color: var(--color-gold);
}

.nav-menu .nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    margin: 0 15px;
    text-decoration: none;
    color: var(--color-text); 
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}
html.light-mode .nav-link {
    color: var(--color-text-light);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.btn {
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 1px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: var(--color-dark-gold);
    border-color: var(--color-dark-gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px; /* Added gap */
}

.hamburger {
    display: none; 
    font-size: 24px;
    color: var(--color-white); 
    cursor: pointer;
}
html.light-mode .hamburger {
    color: var(--color-black);
}

/* --- THEME TOGGLE SWITCH --- */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}
.theme-switch-wrapper .sun-icon,
.theme-switch-wrapper .moon-icon {
    font-size: 1.1rem;
    color: var(--color-text);
    transition: color 0.3s ease;
}
html.light-mode .theme-switch-wrapper .sun-icon {
    color: var(--color-gold);
}
html:not(.light-mode) .theme-switch-wrapper .moon-icon {
    color: var(--color-gold);
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}
.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-black-secondary);
    border: 1px solid var(--color-border);
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--color-grey);
    border-color: var(--color-border-light);
}
input:checked + .slider:before {
    transform: translateX(24px);
}
/* --- END THEME TOGGLE --- */


/* --- ======== STEP 2: HERO SECTION STYLING ======== --- */
.hero-section {
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative; 
    overflow: hidden; 
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* Behind hero content */
    background-color: var(--color-black);
    transition: background-color 0.3s ease;
}
html.light-mode #particles-js {
    background-color: var(--color-white);
}

.hero-content {
    position: relative; 
    z-index: 2; /* On top of particles */
    text-align: center;
}

.hero-logo {
    display: inline-block; 
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.hero-logo img {
    max-width: 250px; 
    height: auto;
    /* This new drop-shadow will create a subtle white/gold glow */
    /* This helps the black 'K' stand out from the dark background */
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    animation: float 6s ease-in-out infinite;
    transform: translateZ(20px);
    transition: filter 0.3s ease;
}
html.light-mode .hero-logo img {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1)); /* Simpler shadow for light mode */
}


.hero-tagline {
    font-size: 3.5rem; 
    font-weight: 800;
    color: var(--color-white); 
    margin-top: 20px;
    margin-bottom: 30px;
    min-height: 1.2em;
    transition: color 0.3s ease;
}
html.light-mode .hero-tagline {
    color: var(--color-black);
}

.typing-cursor {
    font-weight: 500;
    color: var(--color-gold);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent; }
    50% { color: var(--color-gold); }
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white); 
    border: 2px solid var(--color-white); 
    transition: all 0.3s ease;
}
html.light-mode .btn-secondary {
    color: var(--color-black);
    border-color: var(--color-black);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}
html.light-mode .btn-secondary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* --- ======== STEP 3: SERVICES SECTION STYLING (FIXED) ======== --- */
.services-section {
    padding: 80px 0;
    background-color: var(--color-black); 
    position: relative;
    z-index: 2; 
    transition: background-color 0.3s ease;
}
html.light-mode .services-section {
    background-color: var(--color-white);
}

.section-title,
.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--color-white); 
    transition: color 0.3s ease;
}
html.light-mode .section-title,
html.light-mode .section-heading {
    color: var(--color-black);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--color-text); 
    margin-bottom: 60px;
    transition: color 0.3s ease;
}
html.light-mode .section-subtitle {
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
}

.service-card {
    background-color: var(--color-black-secondary); 
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease; 
    transform-style: preserve-3d;
    transform: perspective(1000px);
}
html.light-mode .service-card {
    background-color: var(--color-white);
    border-color: var(--color-border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}


.service-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: var(--color-gold);
}
html.light-mode .service-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* LOTTIE FIX */
.service-card dotlottie-wc {
    margin: 0 auto;
    margin-bottom: 15px;
    max-width: 100%;
    height: 250px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-white); 
    transition: color 0.3s ease;
}
html.light-mode .service-card h3 {
    color: var(--color-black);
}

.service-card p {
    font-size: 1rem;
    color: var(--color-text); 
    line-height: 1.6;
    transition: color 0.3s ease;
}
html.light-mode .service-card p {
    color: #555;
}

/* --- ======== STEP 4: WHY CHOOSE US STYLING ======== --- */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--color-black-secondary); 
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: background-color 0.3s ease;
}
html.light-mode .why-choose-section {
    background-color: var(--color-grey);
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.why-choose-animation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-animation dotlottie-wc {
    width: 300px;
    height: 300px;
}

.why-choose-content .section-title {
    text-align: left;
}

.why-choose-content .section-title span {
    color: var(--color-gold);
}

.why-choose-content .section-subtitle {
    margin-bottom: 30px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    font-size: 1.1rem;
    color: var(--color-text); 
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    transition: color 0.3s ease;
}
html.light-mode .why-choose-list li {
    color: var(--color-text-light);
}

.why-choose-list li i {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px; 
}

/* --- ======== STEP 5: PORTFOLIO SECTION STYLING (FILTERABLE SLIDER) ======== --- */
.portfolio-section {
    padding: 80px 0;
    background-color: var(--color-black); 
    position: relative;
    z-index: 2;
    transition: background-color 0.3s ease;
}
html.light-mode .portfolio-section {
    background-color: var(--color-white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    background-color: var(--color-black-secondary);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
html.light-mode .filter-btn {
    background-color: var(--color-grey);
    color: #555;
    border: 1px solid var(--color-border-light);
}

.filter-btn:hover {
    background-color: var(--color-border);
}
html.light-mode .filter-btn:hover {
    background-color: #ddd;
}

.filter-btn.active {
    background-color: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 5px 10px rgba(255, 215, 0, 0.3);
    border-color: var(--color-gold);
}

/* This is the container for the portfolio items, NOT the slider */
.portfolio-grid {
    display: none; /* Hide grid by default */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Portfolio Slider Styles */
.portfolio-slider {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    display: block; /* Show slider by default */
}

/* Make slider visible and hide grid when filter is active */
.portfolio-section[data-view="slider"] .portfolio-slider {
    display: block;
}
.portfolio-section[data-view="slider"] .portfolio-grid {
    display: none;
}
/* Make grid visible and hide slider when filter is active */
.portfolio-section[data-view="grid"] .portfolio-slider {
    display: none;
}
.portfolio-section[data-view="grid"] .portfolio-grid {
    display: grid;
}


.portfolio-slider .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 400px; 
    height: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 10px;
}
html.light-mode .portfolio-slider .swiper-slide {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portfolio-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: grab;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: all 0.4s ease; /* For filtering */
}
html.light-mode .portfolio-item {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* This class is added by JS to hide items */
.portfolio-item.hide {
    transform: scale(0.8);
    opacity: 0;
    display: none;
}


.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    color: var(--color-white);
    padding: 40px 20px 20px 20px;
    opacity: 1;
    transition: opacity 0.4s ease;
    transform: translateZ(40px);
}

.portfolio-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.portfolio-overlay span {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 500;
}

.portfolio-slider .swiper-pagination-bullet {
    background-color: var(--color-text);
}
.portfolio-slider .swiper-pagination-bullet-active {
    background-color: var(--color-gold);
}


/* --- ======== STEP 6: ABOUT US SECTION STYLING ======== --- */
.about-section {
    padding: 80px 0;
    background-color: var(--color-black-secondary); 
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: background-color 0.3s ease;
}
html.light-mode .about-section {
    background-color: var(--color-grey);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-text strong span {
    color: var(--color-gold);
    font-weight: 700;
}

.about-text {
    font-size: 1.1rem;
    color: var(--color-text); 
    line-height: 1.7;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}
html.light-mode .about-text {
    color: #555;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-content .btn {
    margin-top: 15px;
}

.about-animation dotlottie-wc {
    width: 100%;
    max-width: 650px;
    height: auto;
    margin: 0 auto;
}

/* --- ======== STEP 7: OUR CLIENTS STYLING (FIXED) ======== --- */
.clients-section {
    padding: 80px 0;
    background-color: var(--color-black); 
    position: relative;
    z-index: 2;
    overflow: hidden; 
    transition: background-color 0.3s ease;
}
html.light-mode .clients-section {
    background-color: var(--color-white);
}

.client-slider {
    width: 80%;
    padding: 20px 0;
}

.client-slider .swiper-slide {
    width: 220px; /* Made card wider */
    height: 120px; /* Made card taller */
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
html.light-mode .client-slider .swiper-slide {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


.client-slider .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--color-gold);
}
html.light-mode .client-slider .swiper-slide:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.client-slider .logo-card img {
    max-width: 90%;  /* Increased size */
    max-height: 70px; /* Increased size */
    transition: all 0.3s ease;
    mix-blend-mode: multiply; 
}

.client-slider .logo-card:hover img {
    mix-blend-mode: normal; 
    opacity: 1;
}


/* --- ======== STEP 8: FEATURED IN STYLING (FIXED) ======== --- */
.featured-section {
    padding: 80px 0;
    background-color: var(--color-black-secondary); 
    position: relative;
    z-index: 2;
    transition: background-color 0.3s ease;
}
html.light-mode .featured-section {
    background-color: var(--color-grey);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
}

.logo-card {
    background-color: var(--color-white); 
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100px; 
    text-decoration: none; 
}
html.light-mode .logo-card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.logo-card img {
    max-width: 80%; 
    max-height: 50px; 
    transition: all 0.3s ease;
    mix-blend-mode: multiply; 
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--color-gold);
}
html.light-mode .logo-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.logo-card:hover img {
    mix-blend-mode: normal; 
    opacity: 1;
}

/* --- ======== STEP 9: CONTACT SECTION STYLING ======== --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--color-black); 
    position: relative;
    z-index: 2;
    transition: background-color 0.3s ease;
}
html.light-mode .contact-section {
    background-color: var(--color-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 0; 
    background-color: var(--color-black-secondary); 
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}
html.light-mode .contact-container {
    background-color: var(--color-white);
    border-color: var(--color-border-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background-color: var(--color-black); 
    color: var(--color-white);
    padding: 50px 40px;
    transition: background-color 0.3s ease;
}
html.light-mode .contact-info {
    background-color: var(--color-black-secondary);
}


.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-list li i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-right: 20px;
    margin-top: 5px;
}

.info-list li strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 3px;
    color: var(--color-white);
}

.info-list li p {
    color: var(--color-text);
    margin-bottom: 0;
}
html.light-mode .info-list li p,
html.light-mode .contact-info p {
    color: var(--color-text);
}


.contact-form {
    padding: 50px 40px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--color-white);
    transition: color 0.3s ease;
}
html.light-mode .contact-form h3 {
    color: var(--color-black);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
    transition: color 0.3s ease;
}
html.light-mode .form-group label {
    color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}
html.light-mode .form-group input,
html.light-mode .form-group textarea {
    background-color: var(--color-grey);
    border-color: var(--color-border-light);
    color: var(--color-black);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.contact-form .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

/* --- ======== FOOTER STYLING (NEW) ======== --- */
.footer {
    padding: 80px 0 40px 0; /* More top padding */
    background-color: var(--color-black);
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}
html.light-mode .footer {
    background-color: var(--color-grey);
    border-top-color: var(--color-border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; /* First col wider */
    gap: 40px;
}

.footer-col .logo {
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-block;
}
.footer-col .footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 20px;
    max-width: 300px;
}
html.light-mode .footer-col .footer-about {
    color: #555;
}

.social-links a {
    color: var(--color-text);
    font-size: 1.2rem;
    margin-right: 15px; /* Use margin-right for spacing */
    transition: color 0.3s ease;
}
html.light-mode .social-links a {
    color: #555;
}

.social-links a:hover {
    color: var(--color-gold);
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 25px;
    position: relative;
}
html.light-mode .footer-col h3 {
    color: var(--color-black);
}
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}
html.light-mode .footer-links a {
    color: #555;
}
/* Highlight "Work With Us" Button */
.footer-links #work-with-us-btn {
    color: var(--color-gold);
    font-weight: 600;
    border: 1px solid var(--color-gold);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block; 
    margin-top: 10px;
    transition: all 0.3s ease;
}
.footer-links #work-with-us-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    padding-left: 10px; /* Keep padding consistent */
}

.footer-contact {
    list-style: none;
    color: var(--color-text);
}
html.light-mode .footer-contact {
    color: #555;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.9rem;
}
.footer-contact i {
    color: var(--color-gold);
    margin-right: 12px;
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.9rem;
}
html.light-mode .footer-bottom {
    border-top-color: var(--color-border-light);
    color: #555;
}


/* --- ======== WHATSAPP ICON (NEW) ======== --- */
.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    text-decoration: none;
    z-index: 998;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.whatsapp-icon:hover {
    transform: scale(1.1);
}


/* --- ======== QUOTE/CAREER MODALS (NEW) ======== --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-black-secondary);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: all 0.3s ease;
}
html.light-mode .modal-content {
    background-color: var(--color-white);
    border-color: var(--color-border-light);
}


.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
}
html.light-mode .modal-close {
    color: var(--color-text-light);
}

.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

.form-step h2 {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 30px;
}
html.light-mode .form-step h2 {
    color: var(--color-black);
}

/* Modal form buttons */
.form-step .btn-secondary {
    background-color: var(--color-border);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    margin-right: 10px;
}
.form-step .btn-secondary:hover {
    background-color: #333;
}
html.light-mode .form-step .btn-secondary {
    background-color: var(--color-grey);
    border-color: var(--color-border-light);
    color: var(--color-text-light);
}
html.light-mode .form-step .btn-secondary:hover {
    background-color: #ddd;
}


/* Service options */
.service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}
.service-options label {
    display: block;
}
.service-options input[type="radio"] {
    display: none;
}
.service-options span {
    display: block;
    padding: 20px;
    background-color: var(--color-black);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--color-text);
}
html.light-mode .service-options span {
    background-color: var(--color-grey);
    border-color: var(--color-border-light);
    color: var(--color-text-light);
}

.service-options span i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-gold);
}
.service-options input[type="radio"]:checked + span {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}
.service-options input[type="radio"]:checked + span i {
    color: var(--color-black);
}

/* File Upload Button */
.file-upload-label {
    display: block;
    padding: 12px;
    background: var(--color-black);
    border: 1px solid var(--color-border);
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}
.file-upload-label:hover {
    border-color: var(--color-gold);
}
.file-upload-label i {
    margin-right: 10px;
    color: var(--color-gold);
}
html.light-mode .file-upload-label {
    background-color: var(--color-grey);
    border-color: var(--color-border-light);
}
input[type="file"] {
    display: none;
}
.thank-you-step {
    text-align: center;
}
.thank-you-step h2 {
    margin-top: 10px;
}
.thank-you-step p {
    color: var(--color-text);
}
html.light-mode .thank-you-step p {
    color: var(--color-text-light);
}


/* --- ======== KEYFRAME ANIMATIONS ======== --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- ======== RESPONSIVE (MOBILE) STYLING ======== --- */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed; 
        top: 80px; 
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px); 
        background-color: var(--color-black);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
        transition: left 0.4s ease-in-out;
        z-index: 999; 
    }
    html.light-mode .nav-menu {
        background-color: var(--color-white);
    }
    
    .nav-menu.active { left: 0; }
    .nav-list { flex-direction: column; padding: 20px 0; }
    .nav-list li { text-align: center; padding: 15px 0; }
    .hamburger { display: block; }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-container {
        grid-template-columns: 1fr;
    }
    .why-choose-content .section-title {
        text-align: center;
    }
    .why-choose-content .section-subtitle {
        text-align: center;
    }
    .why-choose-animation {
        order: -1;
        margin-bottom: 40px;
    }
    .why-choose-animation dotlottie-wc {
        width: 300px;
        height: 300px;
    }

    /* Portfolio responsive */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-slider .swiper-slide {
        width: 300px; /* Smaller slides on tablet */
        height: 225px;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-content .section-title {
        text-align: center;
    }
    .about-animation {
        order: -1; 
        margin-bottom: 40px;
    }
    .about-animation dotlottie-wc {
        max-width: 350px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact responsive */
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer .container {
        display: block; /* Stack footer columns */
    }
}

@media (max-width: 768px) {
    .hero-tagline { font-size: 2.5rem; }
    .hero-logo img { max-width: 150px; }

    .services-grid {
        grid-template-columns: 1fr;
    }
       #raise-quote-btn {
        display: inline-block !important;
        
    }
     .theme-switch-wrapper {
        display: none !important;
    }

    .section-title,
    .section-heading { font-size: 2rem; }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr; 
    }
    
    .service-options {
        grid-template-columns: 1fr; /* Stack service options */
    }
    
    .footer-grid {
        grid-template-columns: 1fr; /* Stack footer cols */
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-right {
        gap: 15px; /* Tighter gap on mobile */
    }
    .nav-right .btn-primary {
        display: none;
    }
    .theme-switch-wrapper {
        margin-right: 10px; /* Add some space when button is gone */
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
}