/* navbar */
html {
    scroll-behavior: smooth;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: #ff7424 !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: #111827 !important;
    font-weight: 500;
    margin: 0 6px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff7424 !important;
}

.quote-btn {
    border: 1.5px solid #ff7424;
    color: #ff7424;
    padding: 6px 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quote-btn:hover {
    background-color: #ff7424;
    color: #fff;
}

.nav-link.active {
    color: #ff7424 !important;
    font-weight: 600;
    border-bottom: 2px solid #ff7424;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../img/header.png") no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Overlay for darker effect */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Small title animation */
.hero-title-small {
    display: inline-block;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 1s forwards;
    animation-delay: 0.3s;
    font-weight: 500;
}

/* Big title animation */
.hero-title-big {
    display: inline-block;
    background-color: #ff6b00;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards;
    animation-delay: 1.3s;
    font-weight: 700;
    color: white;
    margin-top: 10px;
    font-size: 3rem;
}

/* Animations */
@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive font */

@media (max-width: 768px) {
    .hero-title-big {
        font-size: 1.5rem;
        padding: 8px 16px;
    }

    .hero-title-small {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title-big {
        font-size: 1.3rem;
        padding: 6px 12px;
    }

    .hero-title-small {
        font-size: 1rem;
    }
}

/* brand logo work */

.logo-slider {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.logo-track {
    display: flex;
    width: calc(250px * 16);
    animation: scroll 25s linear infinite;
}

.logo {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo img:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* footer */

footer {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 60px 0 20px;
}

footer h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ff7424;
}

.footer-brand {
    color: #ff7424;
    font-size: 24px;
    font-weight: bold;
}

.footer-btn {
    border: 1px solid #d1d5db;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 5px 5px 0 0;
}

.footer-btn:hover {
    background-color: #ff7424;
    border-color: #ff7424;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 15px;
    margin-top: 30px;
    font-size: 14px;
}

/* about */

.trust-section h1 {
    font-weight: 700;
    font-size: 63px;
    line-height: 1.3;
}

.trust-section p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 30px;
}

.counter-box {
    margin-top: 15px;
}

.counter {
    font-size: 37px;
    font-weight: bold;
    color: #ff7424;
}

.counter-label {
    font-size: 0.9rem;
    color: #444;
}

.trust-img img {
    max-width: 100%;
    border-radius: 8px;
}

.list-unstyled li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* work */

.showcase-container {
    border: 1px solid #e5d8ff;
    border-radius: 16px;
    padding: 30px;
    background-color: #fdfdff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 17px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.showcase-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
}

.showcase-text h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.showcase-text p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .showcase-text {
        margin-bottom: 20px;
    }
}

/* Animation base styles */
/* .animate {
   opacity: 0;
   transform: translateY(30px);
   transition: all 0.6s ease-out;
 }

 .animate.show {
   opacity: 1;
   transform: translateY(0);
 }

 .animate-left {
   transform: translateX(30px);
 }

 .animate-left.show {
   transform: translateX(0);
   opacity: 1;
 } */

/* services */

.marketing-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.marketing-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.marketing-content {
    padding: 20px;
}

.marketing-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.marketing-text {
    color: #6c757d;
    font-size: 0.95rem;
    text-align: justify;
}

@media (max-width: 576px) {
    .marketing-title {
        font-size: 1.1rem;
    }

    .marketing-text {
        font-size: 0.9rem;
    }
}

.title {
    font-weight: bold;
}

/* cta   */

.cta-section {
    background-color: #1f2937;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    color: #cbd5e0;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1rem;
}

.btn-orange {
    background-color: #f97316;
    color: white;
    border: 1px solid #f97316;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-orange:hover {
    color: #f97316;
    border: 1px solid #f97316;
}

.btn-outline-orange {
    color: #f97316;
    border: 1px solid #f97316;
    padding: 10px 20px;
    font-weight: 600;
    background-color: transparent;
}

.btn-outline-orange:hover {
    background-color: #f97316;
    color: white;
}

@media (max-width: 576px) {
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* review */

.testimonial-section {
    max-width: 1140px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 96%;
    max-width: 98%;
    box-sizing: border-box;
    padding: 20px;
    border: 2px solid #e0cfff;
    border-radius: 10px;
    margin: 0 10px;
    background-color: #fff;
}

.testimonial-card h6 {
    font-weight: 600;
    color: #ff6a00;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 15px;
}

.stars {
    color: #ffa500;
}

.testimonial-controls {
    text-align: center;
    margin-top: 20px;
}

.testimonial-controls button {
    border: none;
    background-color: #ff6a00;
    color: white;
    padding: 10px 16px;
    border-radius: 50px;
    margin: 0 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-controls button:hover {
    background-color: #e55c00;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

.about-section {
    background-color: #ff7424;
    padding: 60px 0;
}

.about-box {
    background-color: #ffffff;
    border: 2px solid #e0cfff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.about-title {
    color: #ff7424;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-text {
    text-align: justify;
    font-size: 0.95rem;
    color: #333;
}

@media (max-width: 767.98px) {
    .about-box {
        margin-bottom: 30px;
    }
}

.about-header {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .about-header {
        margin-top: 37px;
    }
}

.contact-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 70px;
}

.left-panel {
    background: #f0e6ff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.left-panel h1 {
    font-weight: bold;
}

.left-panel h1 span {
    color: #ff5722;
}

.social-icons a {
    font-size: 20px;
    margin-right: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #ff5722;
    transform: scale(1.2);
}

.right-panel {
    padding: 40px;
}

@media (max-width: 500px) {
    .right-panel {
        padding: 27px;
    }
}

.form-control {
    border-radius: 5px;
}

.form-label {
    font-weight: 600;
}

.btn-submit {
    background: #ff5722;
    color: #fff;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

/* services */

.service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    transform: scale(0.95);
    cursor: pointer;
    position: relative;
}

/* Card hover animation */
.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1) rotate(-1deg);
}

.service-content {
    padding: 20px;
    text-align: left;
}

.service-number {
    background: #7b61ff;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.service-card:hover .service-number {
    background: #ff5722;
}

.service-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.service-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* Animation on load */
.animate-card {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* service header style */
.services-header {
    background-color: #2d333b;
    color: #fff;
    padding: 60px 0;
}

.services-header h2 {
    font-weight: 700;
    font-size: 2rem;
}

.services-header p {
    font-size: 1rem;
    color: #cfd4da;
}

/* Image styling with animation */
.services-img img {
    width: 100%;
    border-radius: 8px;
    transform: scale(0.95);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.services-img img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Animation fade-in effect */
.animate-fade {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
}

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

.title-responsive {
    margin-top: 50px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .title-responsive {
        margin-top: 30px;
        margin-bottom: 17px;
    }
}

.review-responsive {
    margin-top: 17px;
}

@media (max-width: 768px) {
    .review-responsive {
        margin-top: 3px;
    }
}

.brand-color {
    color: #ff7424;
}

.border-bot {
    border-bottom: solid 1px #ff7424;
}

/* work */

.carousel-inner {
    border-radius: 30px;
}

.carousel-item {
    height: 700px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 30px;
    padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .carousel-item {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .carousel-item {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 220px;
    }
}

.project-box {
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 10px;
}

.project-box:hover {
    transform: translateY(-5px);
}

.project-img {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

/* Hover zoom */
.project-box:hover .project-img img {
    transform: scale(1.1);
}

/* Overlay */
.project-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 116, 36, 0.5);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.project-box:hover .project-img::after {
    opacity: 1;
}

/* Card body */
.project-body {
    padding: 20px;
    background: #fff;
}

.project-body h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-body p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .project-img {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .project-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .project-img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .project-img {
        height: 200px;
    }
}

.logo-card {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #fbf3ee;
    border-radius: 10px;
}

.logo-card img {
    width: 77px;
    height: 77px;
    object-fit: contain;
    transition: filter 0.4s ease;
    filter: grayscale(80%) brightness(70%);
}

/* Wiggle animation */
@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(5deg);
    }

    30% {
        transform: rotate(-5deg);
    }

    45% {
        transform: rotate(4deg);
    }

    60% {
        transform: rotate(-4deg);
    }

    75% {
        transform: rotate(2deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.logo-card:hover img {
    filter: grayscale(0%) brightness(100%);
    animation: wiggle 0.6s ease-in-out;
}

@media (max-width: 768px) {
    .logo-card img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .logo-card img {
        width: 70px;
        height: 70px;
    }
}

.work-content {
    text-align: justify;
}

.margintop {
    margin-top: 70px;
}

@media (max-width: 576px) {
    .margintop {
        margin-top: 30px;
    }
}

.services-margintop {
    margin-top: 130px;
}

@media (max-width: 576px) {
    .services-margintop {
        margin-top: 30px;
    }
}

.card-custom {
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fbf3ee;
    height: 500px;
}

.card-custom:hover {
    border-image: linear-gradient(45deg, #ff7424, #007bff) 1;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    width: 100%;
    height: auto;
    display: block;
}

.card-body h5 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-body p {
    font-size: 0.95rem;
    color: #555;
}

.post-date {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    background: #ff7424;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

@media (max-width: 576px) {
    .card-body h5 {
        font-size: 1rem;
    }

    .card-body p {
        font-size: 0.85rem;
    }
}

.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

@media (max-width: 576px) {
    .btn-responsive-top {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .logo {
        width: 170px;
    }
}

.blog-description {
    height: 85px;
    overflow: hidden;
}

:root {
    --nexus-primary: #ff7424;
    --nexus-gradient: linear-gradient(135deg, #ff7424 0%, #d95408 100%);
}
.nexus-card:hover {
    transform: translateY(-5px);
}
.nexus-header {
    background: var(--nexus-gradient);
    color: white;
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.nexus-header::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.nexus-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 28px;
}
.nexus-subtitle {
    font-size: 16px;
    opacity: 0.9;
}
.nexus-form {
    padding: 10px;
    background-color: white;
}
.nexus-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--nexus-dark);
    display: flex;
    align-items: center;
}
.nexus-label i {
    margin-right: 8px;
    color: var(--nexus-primary);
}
.nexus-input,
.nexus-select,
.nexus-textarea {
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 13px 15px;
    width: 100%;
    transition: all 0.3s ease;
}
.nexus-input:focus,
.nexus-select:focus,
.nexus-textarea:focus {
    border-color: var(--nexus-primary);
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
    outline: none;
}
.nexus-textarea {
    min-height: 100px;
    resize: vertical;
}
.nexus-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}
.nexus-btn-primary {
    background: var(--nexus-gradient);
    color: white;
}
.nexus-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
}
.nexus-btn-secondary {
    background-color: #e0e6ed;
    color: var(--nexus-dark);
}
.nexus-btn-secondary:hover {
    background-color: #d1d9e0;
}
.nexus-file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}
.nexus-file-upload input[type="file"] {
    position: absolute;
    left: -9999px;
}
.nexus-file-upload label {
    display: block;
    padding: 10px 15px;
    background-color: #f0f3f7;
    border: 1px dashed #d1d9e0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nexus-file-upload label:hover {
    background-color: #e0e6ed;
}
@media (max-width: 768px) {
    .nexus-contact-info {
        flex-direction: column;
        gap: 15px;
    }
}
