
/* Ishtahaar Digital Agency Custom Styles */

/* Color Variables */
:root {
    --primary-dark-blue: #0a0a0a;
    --secondary-dark-blue: #1a1a1a;
    --accent-purple: #8b5cf6;
    --accent-dark-purple: #6d28d9;
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --border-color: #8b5cf6;
}

/* Override Bootstrap warning colors with purple */
.text-warning {
    color: var(--accent-purple) !important;
}

.border-warning {
    border-color: var(--accent-purple) !important;
}

.btn-warning {
    background-color: var(--accent-purple) !important;
    border-color: var(--accent-purple) !important;
    color: white !important;
}

.btn-warning:hover {
    background-color: var(--accent-dark-purple) !important;
    border-color: var(--accent-dark-purple) !important;
    color: white !important;
}

.btn-outline-warning {
    border-color: var(--accent-purple) !important;
    color: var(--accent-purple) !important;
}

.btn-outline-warning:hover {
    background-color: var(--accent-purple) !important;
    border-color: var(--accent-purple) !important;
    color: white !important;
}

/* Additional warning color overrides */
.bg-warning {
    background-color: var(--accent-purple) !important;
}

.alert-warning {
    background-color: rgba(139, 92, 246, 0.1) !important;
    border-color: var(--accent-purple) !important;
    color: var(--accent-purple) !important;
}

.badge-warning {
    background-color: var(--accent-purple) !important;
    color: white !important;
}

.table-warning {
    background-color: rgba(139, 92, 246, 0.1) !important;
    border-color: var(--accent-purple) !important;
}

.list-group-item-warning {
    background-color: rgba(139, 92, 246, 0.1) !important;
    border-color: var(--accent-purple) !important;
    color: var(--accent-purple) !important;
}

/* Override any remaining yellow/warning colors */
*[class*="warning"] {
    color: var(--accent-purple) !important;
}

/* Specific overrides for common warning elements */
.text-warning,
.text-warning * {
    color: var(--accent-purple) !important;
}

.border-warning,
.border-warning * {
    border-color: var(--accent-purple) !important;
}

/* COMPREHENSIVE WARNING COLOR OVERRIDE */
/* This ensures ALL warning colors throughout the website are purple */

/* Override Bootstrap CSS variables */
:root {
    --bs-warning: #ab44ff !important;
    --bs-warning-rgb: 139, 92, 246 !important;
    --warning: #8b5cf6 !important;
    --warning-rgb: 139, 92, 246 !important;
}

/* Force override any yellow colors that might still exist */
[class*="warning"],
[style*="#ffc107"], [style*="#ffeb3b"], [style*="#fff176"],
[style*="#ffd54f"], [style*="#ffca28"], [style*="#ffb300"],
[style*="rgba(255, 193, 7"], [style*="rgba(255, 235, 59"],
[style*="rgb(255, 193, 7"], [style*="rgb(255, 235, 59"] {
    color: var(--accent-purple) !important;
}

/* Override any background colors */
[class*="bg-warning"],
[style*="background-color: #ffc107"], [style*="background-color: #ffeb3b"],
[style*="background: #ffc107"], [style*="background: #ffeb3b"] {
    background-color: var(--accent-purple) !important;
}

/* Override any border colors */
[style*="border-color: #ffc107"], [style*="border-color: #ffeb3b"],
[style*="border: 1px solid #ffc107"], [style*="border: 2px solid #ffc107"] {
    border-color: var(--accent-purple) !important;
}

/* Global yellow to purple conversion */
* {
    /* CSS custom properties for color replacement */
    --yellow-primary: var(--accent-purple) !important;
    --yellow-secondary: var(--accent-dark-purple) !important;
    --bootstrap-warning: var(--accent-purple) !important;
}

/* Global Styles */
* {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--primary-dark-blue);
    color: var(--text-light);
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background-color: var(--primary-dark-blue);
 }

 #spinner.show {
     transition: opacity .5s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

 #spinner .spinner-grow {
     color: var(--accent-purple) !important;
 }

/*** Spinner End ***/

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-dark-blue) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
  background: linear-gradient(135deg, rgba(86, 6, 133, 0.4), rgba(0, 0, 0, 0.85));
    backdrop-filter: blur(15px);   
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    color: white;
}


.hero-title {
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Floating Animation Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;

    animation: float 6s ease-in-out infinite;
}

.floating-icon-1 { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon-2 { top: 60%; right: 15%; animation-delay: 2s; }
.floating-icon-3 { bottom: 30%; left: 20%; animation-delay: 4s; }
.floating-icon-4 { top: 40%; right: 30%; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    z-index: 99;
    background-color: var(--accent-purple);
    color: var(--text-dark);
    border-radius: 50%;
}

.btn {
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 25px;
}





/* Services Section Styles */
.services {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-dark-blue) 100%);
}

.services-item {
    background: linear-gradient(135deg, #4c1d95, #6d28d9, #8b5cf6) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 15px !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3) !important;
}

.services-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.5);
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Service Card Content Styling */
.services-item h4,
.services-item h5 {
    color: #ffffff !important;
}

.services-item p {
    color: #ffffff !important;
    opacity: 0.9;
}

.services-item:hover h4,
.services-item:hover h5 {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.services-item:hover p {
    color: #ffffff !important;
    opacity: 1;
}

/* Service Card Icons */
.services-item i {
    color: #ffffff !important;
}

.services-item:hover i {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Service Card Buttons */
.services-item .btn {
    background: #ffffff !important;
    color: #4c1d95 !important;
    border: 2px solid #ffffff !important;
    font-weight: 600 !important;
}

.services-item .btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #4c1d95 !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Second Row Service Cards - Dark Purple Theme */
.bg-dark.services-item {
    background: linear-gradient(135deg, #4c1d95, #6d28d9, #8b5cf6) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.bg-dark.services-item:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.5);
}

/* Override warning buttons in second row to white */
.bg-dark.services-item .btn-warning {
    background: #ffffff !important;
    color: #4c1d95 !important;
    border: 2px solid #ffffff !important;
}

.bg-dark.services-item .btn-warning:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #4c1d95 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Override warning icons in second row to white */
.bg-dark.services-item .text-warning {
    color: #ffffff !important;
}

/* ASHNETIC Services Section - Dark Purple Theme */
#services .services-item {
    background: linear-gradient(135deg, #4c1d95, #6d28d9, #8b5cf6) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3) !important;
}

#services .services-item:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.5) !important;
    transform: translateY(-10px);
}

/* ASHNETIC Services - White Text */
#services .services-item h4,
#services .services-item h5,
#services .services-item h3 {
    color: #ffffff !important;
}

#services .services-item p {
    color: #ffffff !important;
    opacity: 0.9;
}

#services .services-item:hover h4,
#services .services-item:hover h5,
#services .services-item:hover h3 {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

#services .services-item:hover p {
    color: #ffffff !important;
    opacity: 1;
}

/* ASHNETIC Services - White Icons */
#services .services-item i {
    color: #ffffff !important;
}

#services .services-item:hover i {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* ASHNETIC Services - White Buttons */
#services .services-item .btn {
    background: #ffffff !important;
    color: #4c1d95 !important;
    border: 2px solid #ffffff !important;
    font-weight: 600 !important;
}

#services .services-item .btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #4c1d95 !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* ASHNETIC Services - Section Header */
#services .text-warning {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.services-item:hover .services-inner-icon i {
    transform: scale(1.1);
    color: var(--accent-purple);
}

.services-inner-icon {
    transition: all 0.3s ease;
}

/* Counter Animation */
.counter {
    font-weight: 700;
    color: var(--accent-purple);
}

/* About Section Styles */
.about-img .rotate-left,
.about-img .rotate-right {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: -50px;
    z-index: -1;
}

.about-img .rotate-left {
    left: -50px;
    animation: rotateLeft 10s linear infinite;
}

.about-img .rotate-right {
    right: -50px;
    animation: rotateRight 10s linear infinite;
}

.experiences {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

@keyframes rotateLeft {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes rotateRight {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Topbar Styles */
.topbar-top {
    background-color: var(--secondary-dark-blue) !important;
}

.topbar-info a {
    color: var(--text-light) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.topbar-info a:hover {
    color: var(--accent-purple) !important;
}

.topbar-icon a {
    color: var(--accent-purple) !important;
    transition: all 0.3s ease;
}

.topbar-icon a:hover {
    transform: scale(1.2);
}

/* Navbar Styles */
.navbar-brand h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-purple) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-purple);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Portfolio Section Styles */
.portfolio-filter {
    transition: all 0.3s ease;
}

.portfolio-filter.active {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
    color: white;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 26, 46, 0.9), rgba(231, 177, 0, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-item:hover .project-content {
    opacity: 1;
}

.project-info h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.project-buttons .btn {
    font-size: 0.875rem;
    padding: 8px 16px;
}

/* Portfolio Filter Animation */
.portfolio-item {
    transition: all 0.5s ease;
}

.portfolio-item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Form Styles */
.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-purple);
    color: var(--text-light);
    border-radius: 25px;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
    color: var(--text-light);
}

.form-control::placeholder {
    color: rgba(248, 249, 250, 0.7);
}

.form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-purple);
    color: var(--text-light);
    border-radius: 25px;
}

.form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
    color: var(--text-light);
}

/* Testimonials Styles */
.testimonial {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-dark-blue) 100%);
}

.testimonial-content {
    background-color: var(--secondary-dark-blue);
    border: 1px solid var(--accent-purple);
    transition: all 0.3s ease;
}

.testimonial-item:hover .testimonial-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

/* Contact Section Styles */
.contact-form {
    background-color: var(--secondary-dark-blue) !important;
}

.contact-item {
    background-color: var(--secondary-dark-blue) !important;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.contact-icon i {
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon i {
    transform: scale(1.1);
}

/* Footer Styles */
.footer {
    background-color: var(--secondary-dark-blue) !important;
}

.footer .btn-link {
    transition: all 0.3s ease;
}

.footer .btn-link:hover {
    color: var(--accent-purple) !important;
    transform: translateX(5px);
}

/* Copyright Styles */
.copyright {
    background-color: var(--primary-dark-blue) !important;
}

.copyright-icon {
    transition: all 0.3s ease;
}

.copyright-icon:hover {
    transform: scale(1.1);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8)), url('../img/carousel-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-purple) !important;
}

/* Team Styles */
.team-item {
    transition: all 0.3s ease;
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.team-social .btn {
    transition: all 0.3s ease;
}

.team-social .btn:hover {
    transform: scale(1.1);
}

/* Value Items */
.value-item {
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item:hover .value-icon i {
    transform: scale(1.1);
    color: var(--accent-purple);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }

    .floating-elements {
        display: block;
    }

    .floating-icon {
        font-size: 1.2rem !important;
        opacity: 0.6 !important;
    }

    .floating-icon-1 {
        top: 10% !important;
        left: 3% !important;
    }
    .floating-icon-2 {
        top: 75% !important;
        right: 5% !important;
    }
    .floating-icon-3 {
        bottom: 20% !important;
        left: 8% !important;
    }
    .floating-icon-4 {
        top: 40% !important;
        right: 15% !important;
    }

    .services-item {
        margin-bottom: 2rem;
    }

    .project-item {
        margin-bottom: 2rem;
    }

    .contact-item {
        margin-bottom: 1rem;
    }

    .page-header {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .display-5 {
        font-size: 2rem !important;
    }

    .services-item,
    .project-item {
        padding: 2rem !important;
    }

    .page-header {
        min-height: 250px;
    }
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 15px;
    color: var(--bs-white);
    font-weight: 500;
    font-size: 16px;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active  {
    color: var(--bs-primary);
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover,
.dropdown .dropdown-menu a.active {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.navbar-toggler {
    background: var(--bs-secondary);
    color: var(--bs-primary) !important;
    padding: 5px 12px;
    border: 2px solid var(--bs-primary) !important;
}

/*** Navbar End ***/



/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, .7);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev {
    width: 80px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 30px 30px 0;
    transition: .5s;
    opacity: 1;
}


.carousel-control-next {
    width: 80px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 30px 0 0 30px;
    transition: .5s;
    opacity: 1;
}

#carouselId .carousel-indicators li,
#carouselId .carousel-indicators li {
    width: 24px;
    height: 24px;
    background: var(--bs-dark);
    border: 2px solid var(--bs-primary);
    border-radius: 24px;
    margin: 0 10px 30px 10px;
}

#carouselId .carousel-indicators li.active {
    background: var(--bs-primary) !important;
}

@media (max-width: 768px) {
    .carousel-item {
        width: 100%;
        height: 400px;
    }

    .carousel-item img {
        height: 400px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/hero.jpg) center center no-repeat;
    background-size: cover;
    margin-bottom: 6rem;
}

/*** Carousel End ***/


/*** About Start ***/

.about-img {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 30px 30px 30px ;
    overflow: hidden;
}

.about-img::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--bs-dark);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}


.about-img::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.rotate-left {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 28%;
    left: -10%;
    rotate: 25deg;
    z-index: 2;
}

.rotate-right {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 28%;
    right: -10%;
    rotate: -25deg;
    z-index: 2;
}

.about-img img {
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.experiences {
    width: 160px;
    height: 200px;
    position: absolute;
    top: -0;
    right: 0;
    padding: 35px 35px;
    text-align: center;
    border-radius: 10px;
    z-index: 3;
    animation: mymove 5s infinite;
    animation-timing-function: ease-in-out;
}

@keyframes mymove {
    from {top: -202px;}
    to {top: 102%;}
}

/*** About End ***/


/*** Services Start ***/
.services-inner-icon {
    width: 130px;
    height: 130px;
    background: var(--bs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    position: relative;
    
}

.services-inner-icon::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 62px;
    top: 50%;
    left: 50%;
    transition: .5s;
}

.services-item:hover .services-inner-icon::after {
    width: 100%;
    height: 100%;
    margin-top: -50%;
    margin-left: -50%;
    background: var(--bs-primary);
    color: var(--bs-dark);
    
} 

.services-item i {
    text-align: center;
    transition: .5s;
}

.services-item:hover i {
    color: var(--bs-dark) !important;
    z-index: 1;
    rotate: 360deg;
}

.services-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Services Start ***/

/*** Project Start ***/
.project-item {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 30px 30px 30px ;
    overflow: hidden;
}

.project-item::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--bs-dark);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}


.project-item::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.project-left {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    left: -18%;
    rotate: 30deg;
    z-index: 2;
}

.project-right {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    right: -18%;
    rotate: -30deg;
    z-index: 2;
}

.project-item img {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-item a {
    position: absolute;
    padding: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-360deg);
    border-radius: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    opacity: 0;
}

.project-item:hover a {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    background: var(--bs-primary);
    color: var(--bs-dark) !important;
    opacity: 1;

}


/*** prohect Start ***/


/*** Blog Start ***/

.blog-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}


.blog-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 80px;
    height: 50px;
    background: var(--bs-primary);
    top: -51px;
    left: 0;
    border: 0;
    border-radius: 10px 30px 30px 10px;
}

.blog-carousel .owl-nav .owl-prev {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: .5s;
}

.blog-carousel .owl-nav .owl-prev:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.blog-carousel .owl-prev,
.blog-carousel .owl-next {
    color: var(--bs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-carousel .owl-nav .owl-next {
    position: absolute;
    width: 80px;
    height: 50px;
    background: var(--bs-primary);
    top: -51px;
    right: 0;
    border-radius: 30px 10px 10px 30px;
}

.blog-carousel .owl-nav .owl-next {
    box-shadow: inset 0 0 0 0 #000000;
    transition: .5s;
}

.blog-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 200px 0 0 0 #000000;
    color: var(--bs-primary) !important;
}

/*** Blog End ***/


/*** Pricing Start ***/
.pricing-item {
    transition: .5s;
    
}

.pricing-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    margin: -20px 0 20px 0;
}

.pricing-label {
    border-bottom: 20px solid var(--bs-light);
    border-radius: 0 0 300px 300px;
    transition: .5s;
}

.pricing-item:hover .pricing-label {
    border-color: rgba(0, 0, 0, .5);
}

.pricing-item:hover .pricing-label.pricing-featured {
    border-color: rgba(255, 255, 255, .5);
}


/*** Pricing End ***/


/*** Call To Action start ***/

.call-to-action {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

/*** Call To Action End ***/


/*** Team Start ***/
.team-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-item .team-icon {
    position: absolute;
    top: 15px;
    right: -80px;
    rotate: -30deg;
    transition: .5s;
    visibility: hidden;
}

.team-item:hover .team-icon {
    visibility: visible;
    margin-right: 95px;
    rotate: 0deg;
}

.team-item .team-icon .btn {
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
}

.team-item .team-content {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: 1s;
    
}

.team-item:hover .team-content {
    box-shadow: inset 550px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bs-light);
    z-index: 1;
}

.testimonial-content::before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50px;
    bottom: -15px;
    rotate: 45deg;
    z-index: -5;
    background: var(--bs-light);
}

.testimonial-carousel {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 60px;
    height: 40px;
    background: var(--bs-primary);
    color: var(--bs-dark);
    font-size: 22px;
    top: 14%;
    left: 0px;
    border-radius: 30px 0 0 30px;
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-nav .owl-next {
    left: auto;
    right: 0px;
    border-radius: 0 30px 30px 0;
}

.testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-secondary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

/*** testimonial End ***/


/*** Contact Start ***/
.contact-link a i,
.contact-link a h5,
.contact-link a.h5 {
    transition: .5s;
}

.contact-link a i:hover,
.contact-link a h5:hover,
.contact-link a.h5:hover {
    color: var(--bs-primary) !important;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
    color: rgba(255, 255, 255, .7);
    margin-top: 6rem;
}

.footer-item,
.footer-item a {
    color: rgba(255, 255, 255, .7);
    text-transform: capitalize;
}

/*** Footer End ***/


/*** Copywright Start ***/

.copyright .copyright-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright .copyright-icon {
    width: 44px; 
    height: 44px; 
    display: flex;
    align-items: center; 
    justify-content: center;
}

/*** Copywright End ***/

/* Hero Carousel Styles */
.hero-carousel-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    overflow: hidden;
}

/* Fallback for missing images */
.carousel-image {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
}

.carousel-image[src="img/portfolio-1.jpg"]:not([src*="http"]) {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
}

/* Add purple glow effect to carousel */
.carousel-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

.hero-text-overlay .container {
    text-align: center;
    max-width: 800px;
}

.hero-text-overlay h1 {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-text-overlay h4 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text-overlay p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.carousel-container {
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    user-select: none;
    overflow: hidden;
}

.carousel-center {
    height: 100vh;
    position: absolute;
    left: 50%;
    top: 28%;
    transform: translate(-50%);
    user-select: none;
}

.carousel-items {
    transform-origin: center 200vh;
    transform: rotate(0);
    user-select: none;
    display: flex;
}

.carousel-item {
    position: absolute;
    user-select: none;
    cursor: pointer;
    transform: translateX(-50%);
}

.carousel-card {
    display: block;
    width: 430px;
    height: 610px;
    color: #fff;
    user-select: none;
    border-radius: 17px;
    overflow: hidden;
    cursor: grab;
    position: relative;
    border: 10px solid #8b5cf6;
    transition: all 0.3s ease;
}

.carousel-card:hover {
    border-color: #a855f7;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.carousel-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(50%) brightness(0.8);
    pointer-events: none;
    transition: all 0.3s ease;
}

.carousel-card:hover .carousel-image {
    filter: grayscale(0%) brightness(1);
}

/* Responsive Design for Hero Carousel */
@media screen and (max-height: 1000px) {
    .carousel-card {
        width: 350px;
        height: 497px;
    }
}

@media screen and (max-height: 800px) {
    .carousel-card {
        width: 300px;
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 2.5rem !important;
    }

    .carousel-card {
        width: 250px;
        height: 350px;
        border-width: 5px;
    }

    .carousel-center {
        top: 35%;
    }
}

/* FINAL OVERRIDE: Ensure ALL warning colors are purple */
/* This is the ultimate fallback to catch any missed warning colors */

/* Override any computed styles or JavaScript-generated colors */
.text-warning, .text-warning *,
.btn-warning, .btn-warning *,
.bg-warning, .bg-warning *,
.border-warning, .border-warning *,
.alert-warning, .alert-warning *,
.badge-warning, .badge-warning *,
[class*="warning"], [class*="warning"] * {
    color: var(--accent-purple) !important;
}

.btn-warning {
    background-color: var(--accent-purple) !important;
    color: white !important;
    border-color: var(--accent-purple) !important;
}

.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
    background-color: var(--accent-dark-purple) !important;
    border-color: var(--accent-dark-purple) !important;
    color: white !important;
}

.bg-warning {
    background-color: var(--accent-purple) !important;
}

.border-warning {
    border-color: var(--accent-purple) !important;
}

/* Override any remaining yellow hex values globally */
[style*="#ffc107"], [style*="#FFEB3B"], [style*="#FFF176"],
[style*="#FFD54F"], [style*="#FFCA28"], [style*="#FFB300"],
[style*="rgba(255, 193, 7"], [style*="rgba(255, 235, 59"] {
    color: var(--accent-purple) !important;
    background-color: var(--accent-purple) !important;
    border-color: var(--accent-purple) !important;
}

/* Floating Elements Image Styling */
.floating-icon {
    background: transparent !important; /* Remove any background */
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.floating-icon img {
    width: 70px !important; /* Set icon size */
    height: 70px !important; /* Set icon size */
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.floating-icon:hover img {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.6));
}

/* Floating Elements Image Styling */
.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}




























  .cloneable {
    padding: var(--container-padding);
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    display: flex;
    position: relative;
    font-size: 1.1vw;
  }
  
  .overlay {
    z-index: 2;
    background-image: linear-gradient(90deg, var(--color-neutral-900) 85%, #0000);
    justify-content: flex-start;
    align-items: center;
    width: 37.5em;
    height: 100%;
    padding-left: 2em;
    display: flex;
    position: absolute;
    inset: 0% auto 0% 0%;
  }
  
  .overlay-inner {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 28.125em;
    display: flex;
  }
  
  .overlay-count-row {
    grid-column-gap: .2em;
    grid-row-gap: .2em;
    flex-flow: row;
  
    justify-content: flex-start;
    align-items: center;
    font-family: PP Neue Corp, Impact, sans-serif;
    font-size: 5.625em;
    font-weight: 700;
    display: flex;
  }
  
  .count-column {
    height: 1em;
    overflow: hidden;
  }
  
  .count-heading {
    width: 2ch;
    font-size: 1em;
    line-height: 1;
    margin: 0px;
  }
  
  .count-row-divider {
    background-color: var(--color-light);
    width: 2px;
    height: .75em;
    transform: rotate(15deg);
  }
  
  .overlay-nav-row {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    display: flex;
  }
  
  .button {
    background-color: #0000;
    color: #fff;
    border: 1px solid #fff3;
    border-radius: .4em;
    justify-content: center;
    align-items: center;
    width: 4em;
    height: 4em;
    padding: 0;
    display: flex;
    position: relative;
  }
  
  .button-arrow {
    flex: none;
    width: 1em;
    height: .75em;
  }
  
  .button-arrow.next {
    transform: rotate(180deg);
  }
  
  .button-overlay {
    z-index: 2;
    position: absolute;
    inset: -1px;
  }
  
  .overlay-corner {
    border-top: 1px solid var(--color-light);
    border-left: 1px solid var(--color-light);
    border-top-left-radius: .4em;
    width: 1em;
    height: 1em;
  }
  
  .overlay-corner.top-right {
    position: absolute;
    inset: 0% 0% auto auto;
    transform: rotate(90deg);
  }
  
  .overlay-corner.bottom-left {
    position: absolute;
    inset: auto auto 0% 0%;
    transform: rotate(-90deg);
  }
  
  .overlay-corner.bottom-right {
    position: absolute;
    inset: auto 0% 0% auto;
    transform: rotate(180deg);
  }
  
  .button, .button-overlay{ transition: transform 0.475s var(--cubic-default), opacity 0.475s var(--cubic-default)}
  
  .button:hover .button-overlay{ transform: scale(1.4); }
  .overlay-nav-row:hover:has(.button:hover) .button{ opacity: 0.4; }
  .button:hover{ transform: scale(0.85); opacity: 1 !important; }
  
  .main {
    z-index: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    overflow: hidden;
  }
  
  .slider-wrap {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }
  
  .slider-list {
    flex-flow: row;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    position: relative;
  }
  
  .slider-slide {
    flex: none;
    width: 42.5em;
    height: 28em;
    padding-left: 1.25em;
    padding-right: 1.25em;
    transition: opacity .4s;
    position: relative;
  }
  
  [data-slider="slide"]{ opacity: 0.2; }
  [data-slider="slide"].active { opacity: 1; } 
  [data-slider="slide"].active .slide-caption{ transition-delay:0.3s;} 
  
  .slide-inner {
    border-radius: .5em;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  img{
    width:100%;
    height:100;
    object-fit: cover;
  }
  
  .slide-caption {
    z-index: 2;
    grid-column-gap: .4em;
    grid-row-gap: .4em;
    background-color: var(--color-light);
    color: var(--color-dark);
    white-space: nowrap;
    border-radius: .25em;
    justify-content: flex-start;
    align-items: center;
    padding: .4em .75em .4em .5em;
    display: flex;
    position: absolute;
    top: 1.25em;
    left: 1.25em;
    overflow: hidden;
  }
  
  .caption-dot {
    background-color: var(--color-dark);
    border-radius: 10em;
    flex: none;
    width: .5em;
    height: .5em;
  }
  
  .caption {
    font-size: .75em;
    font-family: arial;
    margin: 0px;
  }
  
  .slide-caption{ transition: transform 0.525s var(--cubic-default), opacity 0.525s var(--cubic-default); transition-delay:0s; }
  
  html:not(.wf-design-mode) .slide-caption{ opacity: 0; transform:translate(-25%, 0px) }
  html:not(.wf-design-mode) [data-slider="slide"].active .slide-caption{ opacity: 1; transform:translate(0%, 0px) }
  
  
  @font-face {
    font-family: 'PP Neue Corp';
    src: url('https://cdn.prod.website-files.com/6717aac16c9ea22eeef1e79e/6717de2d56e40b921572d2d9_PPNeueCorp-TightUltrabold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }