:root {
    --primary-color: #ff6a00;
    --secondary-color: #ff3c00;
    --gradient: linear-gradient(135deg, #ff6a00, #ff3c00);
    --dark-bg: #0f0f0f;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-light: #ffffff;
    --text-muted: #cccccc;
}


/* Base */

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    margin: 0px !important;
}


/* Navbar */

.navbar {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.6) !important;
}

.navbar .nav-link {
    color: #fff;
}

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

.navbar-brand img {
    height: 45px;
}


/* Hero */

.hero {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?q=80&w=1600') center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}


/* Card */

.card-box {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    transition: 0.3s;
}

.card-box:hover {
    transform: translateY(-10px);
}


/* Buttons */

.btn,
button,
input[type="submit"],
.wpcf7-submit {
    background: var(--gradient);
    color: #fff !important;
    border: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover,
.wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.5);
}


/* Hero Form */

.hero-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
}


/* Inputs */

.hero-form input,
.hero-form textarea,
.hero-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}


/* Dropdown */

.hero-form select {
    background: rgba(0, 0, 0, 0.8);
}


/* Placeholder */

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: var(--text-muted);
}


/* Services */

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    transition: 0.4s;
}

.service-card img {
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h4::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--gradient);
    margin: 8px auto;
    transition: 0.3s;
}

.service-card:hover h4::after {
    width: 50%;
}


/* Portfolio */

.portfolio-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.portfolio-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.portfolio-box:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: end;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.portfolio-box:hover .portfolio-overlay {
    opacity: 1;
}


/* Filter buttons */

.filter-btn {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient);
    border: none;
}


/* About */

#about {
    background-color: #212529;
	overflow: hidden;
}

#about .counter {
    color: var(--primary-color);
}


/* CTA */

.cta-section {
    background: var(--dark-bg);
    padding: 60px 20px;
    text-align: center;
}

.cta-section p {
    color: var(--text-muted);
}


/* Floating Form */

.hero-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
}


/* Contact Form 7 Fix */

.hero-form .wpcf7-form p {
    margin-bottom: 10px !important;
}

.hero-form label {
    width: 100%;
    font-size: 14px;
    margin-bottom: 3px;
}

.hero-form .wpcf7 input,
.hero-form .wpcf7 textarea,
.hero-form .wpcf7 select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}


/* Equal spacing */

.hero-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 10px;
}


/* Dropdown dark style */

.hero-form select {
    background: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
}

.hero-form select option {
    background: #000;
    color: #fff;
}


/* Placeholder */

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #ccc !important;
}


/* Textarea height fix */

.hero-form textarea {
    height: 100px;
    resize: none;
}


/* Button */

.hero-form .wpcf7-submit {
    background: #fff !important;
    color: #000 !important;
    border: none;
    padding: 12px;
    border-radius: 10px;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
}


/* Contact Form 7 Submit Button - Blue Gradient */

.hero-form .wpcf7 input[type="submit"],
.hero-form .wpcf7-submit,
.wpcf7 input.wpcf7-submit {
    background: var(--gradient) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 22px !important;
    border-radius: 50px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
    transition: all 0.3s ease;
}


/* Hover Effect */

.hero-form .wpcf7 input[type="submit"]:hover,
.wpcf7 input.wpcf7-submit:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 10px 25px rgba(0, 114, 255, 0.5); */
}


/* Click Effect */

.hero-form .wpcf7 input[type="submit"]:active {
    transform: scale(0.96);
}

.footer-links {
    margin-left: 0px;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .hero-form {
        margin-top: 30px;
    }
}


/* ================= FOOTER MODERN ================= */

.footer-modern {
    background: #0a0a0a;
    padding: 60px 0 20px;
    position: relative;
    color: #fff;
}


/* Top gradient border */

.footer-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gradient));
}


/* Titles */

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}


/* underline effect */

.footer-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--primary);
    display: block;
    margin-top: 6px;
}


/* Text */

.footer-text {
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
}


/* Links */

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}


/* Hover link */

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


/* Social Icons */

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}


/* Hover effect */

.social-icons a:hover {
    background: var(--gradient);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 98, 0, 0.4);
}


/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom a {
    text-decoration: none;
    color: #ff6a00;
}


/* Base style */

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}


/* Facebook */


/* .social-icons a:hover .fa-facebook-f {
    color: #1877F2;
} */

.social-icons a:hover:nth-child(1) {
    background: #1877F2;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.5);
}


/* Instagram (gradient) */

.social-icons a:hover:nth-child(2) {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    box-shadow: 0 10px 25px rgba(221, 42, 123, 0.5);
}


/* YouTube */

.social-icons a:hover:nth-child(3) {
    background: #FF0000;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}


/* WhatsApp */

.social-icons a:hover:nth-child(4) {
    background: #25D366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}


/* Icon color white on hover */

.social-icons a:hover i {
    color: #fff;
}


/* Lift animation */

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
}

.link {
    text-decoration: none;
    color: #BBBBBB;
}

.link:hover {
    color: #f58529
}

#testimonial {
    background-color: #212529;
}