/********** Template CSS **********/
:root {
    --primary: #ffb43f;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.bg-primary {
    background-color: #ffb43f !important;
}

.text-primary {
    color: #ffb43f!important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
/* ✅ Animated Heading for Skytab Slide */
.skytab-slide-heading {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  animation: slideInOut 6s ease-in-out infinite;
}

/* ✅ Keyframe for sliding in and out */
@keyframes slideInOut {
  0% { opacity: 0; transform: translateX(-150%); }
  30% { opacity: 1; transform: translateX(-50%); }
  70% { opacity: 1; transform: translateX(-50%); }
  100% { opacity: 0; transform: translateX(150%); }
}
.abstract-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000108, #6C6C6C);
    background-size: 600% 600%;
    animation: animatedGradient 15s ease infinite;
    color: white;
    z-index: 1;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.6);
}

@keyframes animatedGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 🔮 Abstract Floating Shape Overlay */
.abstract-footer::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 70%);
    border-radius: 50%;
    animation: floatShape 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 2;
    filter: blur(40px);
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(100px, 80px) scale(1.4);
    }
}
.animated-topbar {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000108, #6C6C6C);
    background-size: 600% 600%;
    animation: topbarGradient 15s ease infinite;
    color: white;
    z-index: 10;
}

@keyframes topbarGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 🔮 Abstract floating glow (optional for topbar) */
.animated-topbar::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.07), transparent 70%);
    border-radius: 50%;
    animation: floatTopbar 18s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
    filter: blur(30px);
}

@keyframes floatTopbar {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(60px, 40px) scale(1.3);
    }
}
/* Electricity Sparks Overlay */
.animated-topbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: repeating-linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.08) 2px,
        transparent 2px,
        transparent 40px
    );
    animation: sparkAnimation 8s linear infinite;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

@keyframes sparkAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
<style>
    .portfolio-row {
        min-height: 500px;
    }
    
    .portfolio-img {
        position: relative;
        overflow: hidden;
    }
    
    .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .portfolio-img:hover .portfolio-overlay {
        opacity: 1;
    }
    
    .portfolio-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .divider {
        background: linear-gradient(90deg, #fd7e14, #fdb750);
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-right: 20px;
        float: left;
    }
    
    .tech-details {
        overflow: hidden;
    }
    
    .feature-box {
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    @media (max-width: 991.98px) {
        .portfolio-row {
            min-height: auto;
        }
    }
</style>
<style>
    .about-section {
        position: relative;
        overflow: hidden;
    }
    
    .image-column {
        min-height: 400px; /* Reduced from full viewport height */
    }
    
    .image-column img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
    
    .overlay-content {
        max-width: 90%;
    }
    
    .content-column {
        background: #f8f9fa;
        display: flex;
        align-items: center;
    }
    
    .divider {
        background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        margin-top: 3px;
    }
    
    .bg-primary-light {
        background-color: rgba(13, 110, 253, 0.1);
    }
    
    .feature-item {
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateX(5px);
    }
    
    /* Responsive adjustments */
    @media (max-width: 991.98px) {
        .image-column {
            min-height: 350px;
        }
        
        .overlay-content h2 {
            font-size: 1.8rem;
        }
        
        .content-column {
            padding: 2rem !important;
        }
    }
    
    @media (max-width: 767.98px) {
        .image-column {
            min-height: 300px;
        }
        
        .overlay-content h2 {
            font-size: 1.5rem;
        }
        
        .feature-icon {
            width: 35px;
            height: 35px;
            font-size: 16px;
        }
    }
</style>
<style>
    .feature-section {
        position: relative;
        overflow: hidden;
    }
    
    .content-column {
        background: #f8f9fa;
        display: flex;
        align-items: center;
    }
    
    .image-column {
        min-height: 500px;
    }
    
    .parallax-img {
        height: 100%;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: all 0.3s ease;
    }
    
    .bg-primary-light {
        background-color: rgba(13, 110, 253, 0.1);
    }
    
    .feature-item {
        transition: all 0.3s ease;
        border-radius: 8px;
    }
    
    .feature-item:hover {
        background: white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }
    
    .feature-item:hover .feature-icon {
        transform: rotate(360deg);
        background: #0d6efd !important;
        color: white !important;
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(13,110,253,0.2) 0%, rgba(255,255,255,0.1) 100%);
    }
    
    @media (max-width: 991.98px) {
        .image-column, .content-column {
            min-height: 400px;
        }
        
        .content-column {
            padding: 3rem !important;
        }
    }
    
    @media (max-width: 767.98px) {
        .image-column, .content-column {
            min-height: 350px;
        }
    }
</style>
<style>
    .about-section {
        position: relative;
        overflow: hidden;
    }
    
    .image-column {
        min-height: 500px;
    }
    
    .content-column {
        background: #f8f9fa;
        display: flex;
        align-items: center;
    }
    
    .parallax-img {
        height: 100%;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .overlay-badge {
        position: absolute;
        top: 30px;
        right: 30px;
    }
    
    .divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    }
    
    .text-highlight {
        color: #0d6efd;
        font-weight: 600;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }
    
    .bg-primary-light {
        background-color: rgba(13, 110, 253, 0.1);
    }
    
    .features-list .feature-item {
        transition: all 0.3s ease;
    }
    
    .features-list .feature-item:hover {
        transform: translateX(10px);
    }
    
    .floating-icon {
        position: absolute;
        right: 30px;
        bottom: -15px;
        font-size: 60px;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }
    
    .pulse-animation {
        animation: pulse 2s infinite;
    }
    
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4); }
        70% { box-shadow: 0 0 0 15px rgba(13, 110, 253, 0); }
        100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
    }
    
    @media (max-width: 991.98px) {
        .image-column, .content-column {
            min-height: 400px;
        }
        
        .content-column {
            padding: 3rem !important;
        }
    }
    
    @media (max-width: 767.98px) {
        .image-column, .content-column {
            min-height: 350px;
        }
        
        .floating-icon {
            display: none;
        }
    }
</style>
<style>
    .contact-section {
        position: relative;
        overflow: hidden;
    }
    
    .image-column {
        min-height: 500px;
    }
    
    .form-column {
        background: #f8f9fa;
        display: flex;
        align-items: center;
    }
    
    .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    }
    
    .divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #ffc107, #fd7e14);
    }
    
    .form-control, .form-select {
        border: 1px solid #dee2e6;
        transition: all 0.3s ease;
    }
    
    .form-control:focus, .form-select:focus {
        border-color: #ffc107;
        box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
    }
    
    .floating-icon {
        position: absolute;
        font-size: 2rem;
        color: rgba(255, 193, 7, 0.8);
        animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
        0% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(10deg); }
        100% { transform: translateY(0) rotate(0deg); }
    }
    
    .btn-warning {
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .btn-warning:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    }
    
    /* Form validation styles */
    .was-validated .form-control:invalid, 
    .was-validated .form-select:invalid {
        border-color: #dc3545;
    }
    
    .was-validated .form-control:valid,
    .was-validated .form-select:valid {
        border-color: #28a745;
    }
    
    @media (max-width: 991.98px) {
        .image-column, .form-column {
            min-height: 400px;
        }
    }
    
    @media (max-width: 767.98px) {
        .image-column, .form-column {
            min-height: 350px;
        }
        
        .floating-icon {
            display: none;
        }
    }
</style>
<style>
    .zoom-effect:hover {
        transform: scale(1.05);
    }
    
    .process-step {
        display: flex;
        margin-bottom: 15px;
        align-items: flex-start;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-right: 15px;
        font-weight: bold;
    }
    
    .step-content {
        flex-grow: 1;
    }
    
    .list-group-item {
        transition: all 0.3s ease;
    }
    
    .list-group-item:hover {
        background-color: #f8f9fa;
        transform: translateX(5px);
    }
</style>
<style>
    /* Custom Styles */
    .text-gradient {
        background: linear-gradient(45deg, #0d6efd, #20c997);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline;
    }
    
    .text-highlight {
        background-color: rgba(13, 110, 253, 0.2);
        padding: 2px 8px;
        border-radius: 4px;
        animation: highlight-pulse 2s infinite;
    }
    
    .logo-animate {
        transition: all 0.3s ease;
    }
    
    .logo-animate:hover {
        transform: scale(1.05) rotate(-2deg);
        filter: drop-shadow(0 0 8px rgba(13, 110, 253, 0.3));
    }
    
    .pulse-animate {
        animation: pulse 1.5s infinite;
    }
    
    .text-scroll {
        position: relative;
    }
    
    .text-scroll::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #0d6efd, transparent);
        transform: scaleX(0);
        transform-origin: left;
        animation: text-underline 3s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    @keyframes highlight-pulse {
        0% { background-color: rgba(13, 110, 253, 0.2); }
        50% { background-color: rgba(13, 110, 253, 0.35); }
        100% { background-color: rgba(13, 110, 253, 0.2); }
    }
    
    @keyframes text-underline {
        0% { transform: scaleX(0); }
        50% { transform: scaleX(1); }
        100% { transform: scaleX(0); transform-origin: right; }
    }
    
    .shadow-sm {
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
        transition: box-shadow 0.3s ease;
    }
    
    .shadow-sm:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
    }
</style>
<style>
    /* Custom Styles */
    .text-gradient {
        background: linear-gradient(45deg, #0d6efd, #20c997);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .feature-card {
        position: relative;
        padding: 2.5rem 1.5rem;
        border-radius: 15px;
        background: white;
        box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
        transition: all 0.4s ease;
        overflow: hidden;
        z-index: 1;
        border: 1px solid rgba(13, 110, 253, 0.1);
        height: 100%;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(13, 110, 253, 0.2);
    }
    
    .feature-hover {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #0d6efd, #20c997);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
        z-index: -1;
    }
    
    .feature-card:hover .feature-hover {
        transform: scaleX(1);
        height: 100%;
        transition: all 0.4s ease;
    }
    
    .feature-card:hover .feature-title,
    .feature-card:hover .feature-text,
    .feature-card:hover .svg-animate {
        color: white !important;
        fill: white !important;
    }
    
    .icon-animate {
        transition: all 0.4s ease;
    }
    
    .feature-card:hover .icon-animate {
        transform: scale(1.1) rotate(5deg);
    }
    
    .svg-animate {
        transition: all 0.4s ease;
        fill: #0d6efd;
    }
    
    .feature-title {
        transition: all 0.4s ease;
        color: #212529;
    }
    
    .feature-text {
        transition: all 0.4s ease;
        color: #6c757d;
    }
    
    @media (max-width: 991.98px) {
        .feature-card {
            margin-bottom: 1.5rem;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
    }
</style>
<style>
    /* All previous CSS remains the same */
    .about-text {
        position: relative;
        z-index: 1;
    }
    
    .btn-hover-effect {
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }
    
    .btn-hover-effect::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.2);
        transition: all 0.4s ease;
    }
    
    .btn-hover-effect:hover::after {
        left: 100%;
    }
    
    .btn-warning {
        background-color: #ffc107;
        border-color: #ffc107;
        color: #1a1a1a;
    }
    
    .btn-warning:hover {
        background-color: #e0a800;
        border-color: #e0a800;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255,193,7,0.2);
    }
    
    .btn-outline-light:hover {
        background-color: rgba(255,255,255,0.1);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255,255,255,0.1);
    }
    
    @media (max-width: 991.98px) {
        .about-text {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }
    }
</style>
<style>
    /* Base Styles */
    .counter-card {
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        overflow: hidden;
        z-index: 1;
    }
    
    .counter-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    /* Gradient Backgrounds */
    .bg-primary-gradient {
        background: linear-gradient(45deg, #3a7bd5, #00d2ff);
    }
    .bg-success-gradient {
        background: linear-gradient(45deg, #00b09b, #96c93d);
    }
    .bg-warning-gradient {
        background: linear-gradient(45deg, #f46b45, #eea849);
    }
    .bg-info-gradient {
        background: linear-gradient(45deg, #4776E6, #8E54E9);
    }
    
    /* Floating Shapes */
    .floating-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        filter: blur(30px);
        transition: all 1s ease;
    }
    
    .shape-1 { width: 150px; height: 150px; top: -50px; left: -50px; }
    .shape-2 { width: 100px; height: 100px; bottom: -30px; right: -30px; }
    .shape-3 { width: 120px; height: 120px; top: -30px; right: -30px; }
    .shape-4 { width: 80px; height: 80px; bottom: -20px; left: -20px; }
    .shape-5 { width: 160px; height: 160px; top: -60px; left: -30px; }
    .shape-6 { width: 90px; height: 90px; bottom: -40px; right: -20px; }
    .shape-7 { width: 110px; height: 110px; top: -40px; right: -40px; }
    .shape-8 { width: 70px; height: 70px; bottom: -30px; left: -30px; }
    
    /* Hover Gradient Effect */
    .hover-gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 0;
    }
    
    .counter-card:hover .hover-gradient {
        opacity: 1;
    }
    
    /* Counter Styles */
    .counter {
        font-size: 2.8rem;
        font-weight: 700;
        background: linear-gradient(45deg, #2c3e50, #4ca1af);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    /* Icon Container */
    .icon-container {
        transition: all 0.5s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .counter-card:hover .icon-container {
        transform: rotate(15deg) scale(1.1);
    }
    
    /* Mouse Follow Effect */
    .counter-card {
        position: relative;
    }
    
    .counter-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), 
                     rgba(255,255,255,0.3) 0%, 
                     rgba(255,255,255,0) 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .counter-card:hover::after {
        opacity: 1;
    }
</style>
<style>
    /* Gray Background */
    .bg-light-gray {
        background-color: #f5f5f5;
    }

    /* Image Enhancements */
    .image-container {
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .image-scale {
        transition: transform 0.7s cubic-bezier(0.25, 0.45, 0.45, 0.95);
    }

    .image-container:hover .image-scale {
        transform: scale(1.05);
    }

    .image-border {
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        border: 2px solid rgba(255, 193, 7, 0.7);
        border-radius: 4px;
        pointer-events: none;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .image-container:hover .image-border {
        opacity: 1;
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    /* Text Animations */
    .text-slide {
        animation: slideInLeft 0.8s ease-out forwards;
    }

    .text-reveal {
        display: inline-block;
        position: relative;
    }

    .text-reveal::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f5f5f5;
        animation: textReveal 1.5s cubic-bezier(0.77, 0, 0.18, 1) forwards;
        transform-origin: right;
    }

    .text-fade {
        animation: fadeIn 1.5s ease-in-out forwards;
        opacity: 0;
        animation-delay: 0.8s;
    }

    /* Button Animations */
    .btn-pop {
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        overflow: hidden;
        position: relative;
    }

    .btn-pop:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .btn-pop .btn-text {
        display: inline-block;
        transition: transform 0.4s;
    }

    .btn-pop:hover .btn-text {
        transform: translateX(5px);
    }

    .btn-pop i {
        transition: transform 0.4s;
    }

    .btn-pop:hover i {
        transform: translateX(8px);
    }

    /* Keyframes */
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes textReveal {
        0% {
            transform: scaleX(1);
        }
        50% {
            transform: scaleX(1);
        }
        100% {
            transform: scaleX(0);
        }
    }

    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }
</style>
<style>
    /* Base Styles */
    #website-dispatch, #featured {
        background: transparent;
        position: relative;
    }
    
    /* Image Containers */
    .image-animation-container {
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        transition: all 0.5s ease;
    }
    
    /* Gradient Border Effect */
    .gradient-border-image {
        position: relative;
        z-index: 1;
        transition: transform 1s ease;
    }
    
    .image-animation-container::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #ffc107, #ff6b00, #ffc107);
        z-index: 0;
        border-radius: 10px;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .image-animation-container:hover::before {
        opacity: 1;
        animation: gradientBorder 3s linear infinite;
        background-size: 200% 200%;
    }
    
    /* Image Hover Effects */
    .image-hover-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,193,7,0.1);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 2;
    }
    
    .image-animation-container:hover .gradient-border-image {
        transform: scale(1.03);
    }
    
    .image-animation-container:hover .image-hover-overlay {
        opacity: 1;
    }
    
    /* Animations */
    @keyframes gradientBorder {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    
    /* Entrance Animations */
    #website-dispatch {
        animation: fadeIn 1s ease-out forwards;
    }
    
    #featured {
        animation: fadeIn 1s ease-out 0.3s forwards;
        opacity: 0;
    }
    
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .gradient-border-image {
            min-height: 300px !important;
        }
    }
</style>
<style>
    /* Scoped styles - won't affect other sections */
    #services-section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    #services-section .service-card {
        background: white;
        border-radius: 10px;
        padding: 30px;
        height: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    #services-section .service-icon {
        color: var(--bs-primary);
        transition: all 0.4s ease;
    }
    
    #services-section .service-title {
        color: #2c3e50;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 15px;
        transition: all 0.4s ease;
    }
    
    #services-section .service-text {
        color: #555;
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    #services-section .service-hover-effect {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--bs-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }
    
    #services-section .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    #services-section .service-card:hover .service-hover-effect {
        transform: scaleX(1);
    }
    
    #services-section .service-card:hover .service-icon {
        transform: rotate(10deg) scale(1.1);
    }
    
    #services-section .service-card:hover .service-title {
        color: var(--bs-primary);
    }
    
    /* Animations */
    .animated-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s forwards;
    }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        #services-section .service-card {
            padding: 20px;
        }
        
        #services-section .service-title {
            font-size: 1.2rem;
        }
    }
</style>
.navbar::after {
  content: none !important;
}

.navbar {
  box-shadow: none !important;
  border-bottom: none !important;
}

header,
section,
.container-fluid:first-child,
.container:first-child {
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Remove any thin line under navbar */
body > *:first-child + * {
  border-top: none !important;
  box-shadow: none !important;
}







