/*** Spinner Start ***/
:root {
    --bs-primary: #E30613 !important;      /* Webdoze red */
    --bs-secondary: #ffffff !important;    /* white */
    --bs-dark: #111111;
    --bs-white: #ffffff;
}

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

.bg-secondary {
    background-color: #ffffff !important;
}

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

.text-secondary {
    color: #ffffff !important;
}

.btn-primary {
    background-color: #E30613 !important;
    border-color: #E30613 !important;
}

.btn-secondary {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #E30613 !important;
}

.navbar {
    background: #E30613 !important;
}    

.fact-section {
    background: #000000 !important;
}
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

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

/*** Spinner End ***/


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

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

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

.btn-md-square {
    width: 46px;
    height: 46px;
}

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

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

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    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;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}
.contact-map {
    background: #C40012 !important;
}

.contact-form {
    background: #C40012 !important;
}
.contact-detail .flex-shrink-0.btn-square {
    background: #E30613 !important;
    border-radius: 50%;
}

.contact-detail .flex-shrink-0.btn-square i {
    color: #ffffff !important;
}
/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

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

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

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

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/* PREMIUM CONTACT FIX */

.premium-contact {
    background: #ffffff;
    padding: 100px 0;
}

.contact-info-premium {
    background: linear-gradient(135deg, #0a0a0a, #151515);
    padding: 55px 45px;
    border-radius: 28px;
    height: 100%;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 40px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    font-size: 26px;
    color: #E30613;
    min-width: 32px;
    margin-top: 6px;
}

.contact-info-item h5 {
    color: white !important;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-item p {
    color: rgba(255,255,255,.85);
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
}

.premium-contact-form {
    background: #f8f8f8;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

.premium-contact-form .form-control {
    height: 60px;
    border-radius: 16px;
    border: 1px solid #ddd;
    padding: 18px 22px;
    font-size: 16px;
    box-shadow: none;
    transition: .3s;
    background: white;
}

.premium-contact-form .form-control:focus {
    border-color: #E30613;
    box-shadow: 0 0 0 4px rgba(227,6,19,.08);
}

.premium-contact-form textarea.form-control {
    height: 220px;
    resize: none;
    padding-top: 20px;
}

.premium-contact-form select.form-control {
    height: 60px;
}

.premium-contact-form button {
    height: 62px;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .contact-info-premium {
        margin-bottom: 30px;
        padding: 40px 30px;
    }

    .premium-contact-form {
        padding: 35px 25px;
    }
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}
.navbar .nav-link {
    font-weight: 600;
    transition: 0.3s;
}

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

.dropdown-menu a:hover {
    background: #E30613;
    color: white;
}

.sticky-top {
    z-index: 999;
}
.navbar-nav {
    align-items: center;
}
/*** Footer End ***/

/* PORTFOLIO PAGE */

.portfolio-hero {
    background: linear-gradient(rgba(0,0,0,.75), rgba(227,6,19,.75)),
                url('../img/carousel-1.jpg') center center/cover no-repeat;
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.filter-btn {
    border: none;
    background: #f3f3f3;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #E30613;
    color: white;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.portfolio-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: .5s;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .4s;
    text-align: center;
    padding: 20px;
}

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

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-overlay span {
    color: #E30613;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-overlay h3 {
    color: white;
    margin-bottom: 20px;
}

.portfolio-btn {
    background: #E30613;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
}

.portfolio-stats {
    background: #000;
}

.stat-box {
    padding: 35px;
    border-radius: 20px;
    background: rgba(255,255,255,.05);
}

.stat-box h2 {
    color: #E30613;
    font-size: 42px;
    font-weight: 800;
}

.stat-box p {
    color: white;
    font-size: 18px;
}

.why-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.why-box i {
    font-size: 42px;
    color: #E30613;
    margin-bottom: 20px;
}

.portfolio-cta {
    background: linear-gradient(135deg, #000, #E30613);
}

.portfolio-cta-btn {
    display: inline-block;
    background: white;
    color: #E30613;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.portfolio-cta-btn:hover {
    background: #000;
    color: white;
}

/* ABOUT PAGE */

.about-hero {
    background: linear-gradient(rgba(0,0,0,.75), rgba(227,6,19,.75)),
                url('../img/carousel-2.jpg') center center/cover no-repeat;
}

.about-premium-images {
    position: relative;
}

.premium-main-img {
    width: 80%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.premium-floating-img {
    width: 55%;
    position: absolute;
    bottom: -40px;
    right: 0;
    border-radius: 20px;
    border: 6px solid white;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.premium-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    height: 100%;
    border-top: 5px solid #E30613;
}

.premium-card i {
    font-size: 42px;
    color: #E30613;
    margin-bottom: 20px;
}

.process-box {
    background: white;
    padding: 35px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.process-box span {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #E30613;
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 15px;
}

.industry-box {
    background: #000;
    color: white;
    padding: 25px;
    border-radius: 16px;
    font-weight: 600;
    transition: .3s;
}

.industry-box:hover {
    background: #E30613;
}

/* =========================
   PREMIUM HOMEPAGE WEBDOZE
========================= */

body {
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
}

/* HERO */
.hero-premium {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(227,6,19,.15), transparent 35%),
        linear-gradient(135deg, #050505 0%, #111 55%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: rgba(227,6,19,.12);
    color: #E30613;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(227,6,19,.2);
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,.82);
    margin-bottom: 35px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-block;
    background: #E30613;
    color: white;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s ease;
    border: 2px solid #E30613;
}

.hero-btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

.hero-btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,.25);
    transition: .35s ease;
}

.hero-btn-secondary:hover {
    background: white;
    color: #111;
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item strong {
    display: block;
    font-size: 28px;
    color: white;
}

.trust-item span {
    color: rgba(255,255,255,.7);
    font-size: 14px;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    padding: 40px;
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(227,6,19,.18);
    filter: blur(80px);
    border-radius: 50%;
    top: 10%;
    right: 10%;
}

.hero-main-image {
    width: 100%;
    max-width: 620px;
    position: relative;
    z-index: 2;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    color: white;
    padding: 14px 20px;
    border-radius: 18px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.floating-card i {
    color: #E30613;
}

.card-one {
    top: 15%;
    left: -10px;
}

.card-two {
    bottom: 18%;
    right: 0;
}

.card-three {
    bottom: 0;
    left: 10%;
}

/* TRUST STRIP */
.trust-strip {
    background: #000;
    padding: 70px 0;
}

.metric-box {
    padding: 20px;
}

.metric-box h2 {
    color: #E30613;
    font-size: 52px;
    font-weight: 800;
}

.metric-box p {
    color: white;
    font-size: 17px;
}

/* SECTION TITLES */
.section-heading span,
.section-mini-title {
    color: #E30613;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.section-heading h2,
.premium-section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-heading p {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    color: #666;
}

/* SERVICES */
.premium-services {
    background: #f9f9f9;
}

.premium-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0,0,0,.06);
    transition: .35s;
    height: 100%;
    border: 1px solid rgba(0,0,0,.04);
}

.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(227,6,19,.15);
}

.premium-service-card i {
    font-size: 42px;
    color: #E30613;
    margin-bottom: 20px;
}

.premium-service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.premium-service-card p {
    color: #666;
    line-height: 1.8;
}

/* ABOUT */
.premium-about-images {
    position: relative;
}

.about-main-img {
    width: 80%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.about-small-img {
    width: 52%;
    position: absolute;
    bottom: -50px;
    right: 0;
    border-radius: 24px;
    border: 6px solid white;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -15px;
    background: #E30613;
    color: white;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(227,6,19,.35);
}

.experience-badge strong {
    display: block;
    font-size: 30px;
}

.premium-text {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
}

.about-feature-list {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.about-feature i {
    color: #E30613;
}

/* WHY */
/* PREMIUM WHY WEBDOZE */

.why-webdoze {
    background:
        radial-gradient(circle at top center, rgba(227,6,19,.08), transparent 35%),
        linear-gradient(180deg, #020202 0%, #070707 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-webdoze .section-heading span {
    color: #E30613;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.why-webdoze .section-heading span::before,
.why-webdoze .section-heading span::after {
    content: "";
    width: 80px;
    height: 2px;
    background: rgba(227,6,19,.5);
    position: absolute;
    top: 50%;
}

.why-webdoze .section-heading span::before {
    right: 120%;
}

.why-webdoze .section-heading span::after {
    left: 120%;
}

.why-webdoze .section-heading h2 {
    font-size: 68px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
}

.why-webdoze .section-heading h2 .brand-red {
    color: #E30613;
}

.why-webdoze .section-heading p {
    color: rgba(255,255,255,.72);
    font-size: 22px;
    max-width: 850px;
    margin: auto;
}

.why-card {
    background:
        linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    padding: 45px 38px;
    position: relative;
    overflow: hidden;
    transition: .4s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 220%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(227,6,19,.06),
        transparent
    );
    transition: .8s;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(227,6,19,.5);
    box-shadow: 0 20px 60px rgba(227,6,19,.12);
}

.why-card i {
    font-size: 48px;
    color: #E30613;
    margin-bottom: 28px;
}

.why-card h4 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-card h4::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #E30613;
    margin-top: 15px;
    border-radius: 20px;
}

.why-card p {
    color: rgba(255,255,255,.78);
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
}

/* MOBILE */
@media (max-width: 991px) {
    .why-webdoze {
        padding: 80px 0;
    }

    .why-webdoze .section-heading h2 {
        font-size: 42px;
    }

    .why-webdoze .section-heading p {
        font-size: 18px;
    }

    .why-card {
        padding: 32px 25px;
    }

    .why-card h4 {
        font-size: 24px;
    }

    .why-card p {
        font-size: 16px;
    }

    .why-webdoze .section-heading span::before,
    .why-webdoze .section-heading span::after {
        display: none;
    }
}
/* BLOG PAGE */

.blog-hero {
    min-height: 70vh;
    background:
        radial-gradient(circle at top center, rgba(227,6,19,.12), transparent 35%),
        linear-gradient(135deg, #050505 0%, #111 100%);
    display: flex;
    align-items: center;
}

.min-vh-75 {
    min-height: 70vh;
}

.featured-blog {
    background: #ffffff;
}

.featured-blog-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.blog-category {
    display: inline-block;
    background: rgba(227,6,19,.1);
    color: #E30613;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 700;
}

.blog-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    color: #666;
}

.blog-meta i {
    color: #E30613;
    margin-right: 8px;
}

.premium-blog-grid {
    background: #f8f8f8;
}

.premium-blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

.premium-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(227,6,19,.12);
}

.premium-blog-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-card-content {
    padding: 28px;
}

.blog-tag {
    display: inline-block;
    background: rgba(227,6,19,.1);
    color: #E30613;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-card-content h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
}

.blog-meta-small {
    display: flex;
    gap: 18px;
    color: #777;
    font-size: 14px;
    margin-bottom: 18px;
}

.blog-card-content p {
    color: #666;
    line-height: 1.8;
}

.blog-card-content a {
    color: #E30613;
    text-decoration: none;
    font-weight: 700;
}
/* CONTACT PAGE */

.contact-hero {
    min-height: 70vh;
    background:
        radial-gradient(circle at top center, rgba(227,6,19,.12), transparent 35%),
        linear-gradient(135deg, #050505 0%, #111 100%);
    display: flex;
    align-items: center;
}

.premium-contact-cards {
    background: #fff;
}

.contact-card-premium {
    background: white;
    padding: 35px 25px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    text-align: center;
    transition: .35s;
    height: 100%;
}

.contact-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(227,6,19,.12);
}

.contact-card-premium i {
    font-size: 42px;
    color: #E30613;
    margin-bottom: 20px;
}

.contact-card-premium h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card-premium p {
    color: #666;
    margin: 0;
}

.contact-main-section {
    background: #f8f8f8;
}

.contact-side-image {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.premium-contact-form-v2 {
    background: white;
    padding: 45px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.premium-contact-form-v2 .form-control {
    height: 60px;
    border-radius: 16px;
    border: 1px solid #ddd;
    padding: 16px 20px;
    box-shadow: none;
}

.premium-contact-form-v2 textarea.form-control {
    height: 200px;
    resize: none;
    padding-top: 20px;
}

/* FAQ */
.contact-faq {
    background: white;
}

.premium-faq {
    max-width: 900px;
    margin: auto;
}

.premium-faq .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.premium-faq .accordion-button {
    padding: 22px 28px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: none;
}

.premium-faq .accordion-button:not(.collapsed) {
    background: #E30613;
    color: white;
}

.premium-faq .accordion-body {
    padding: 22px 28px;
    color: #666;
    line-height: 1.8;
}

/* MAP */
.premium-map iframe {
    display: block;
}

/* MOBILE */
@media (max-width: 991px) {
    .premium-contact-form-v2 {
        padding: 30px 20px;
    }

    .contact-card-premium {
        padding: 28px 20px;
    }

    .premium-faq .accordion-button {
        font-size: 16px;
    }
}
/* NEWSLETTER */

.blog-newsletter {
    padding: 100px 0;
    background: #111;
}

.newsletter-box {
    max-width: 900px;
    margin: auto;
    background:
        linear-gradient(135deg, rgba(227,6,19,.12), rgba(255,255,255,.02));
    padding: 70px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.08);
}

.newsletter-box span {
    color: #E30613;
    font-weight: 700;
    letter-spacing: 2px;
}

.newsletter-box h2 {
    color: white;
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
}

.newsletter-box p {
    color: rgba(255,255,255,.75);
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    width: 450px;
    max-width: 100%;
    height: 60px;
    border: none;
    border-radius: 50px;
    padding: 0 25px;
    font-size: 16px;
}

.newsletter-form button {
    height: 60px;
    border: none;
    background: #E30613;
    color: white;
    padding: 0 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.newsletter-form button:hover {
    background: white;
    color: #111;
}
/* SERVICE PAGE */

.service-hero {
    min-height: 80vh;
    background:
        radial-gradient(circle at top center, rgba(227,6,19,.12), transparent 35%),
        linear-gradient(135deg, #050505 0%, #111 100%);
    display: flex;
    align-items: center;
}

.service-hero-image,
.service-overview-image {
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.service-overview {
    background: #fff;
}

.service-included {
    background: #f8f8f8;
}

.premium-service-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    text-align: center;
    transition: .35s;
    height: 100%;
}

.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(227,6,19,.12);
}

.premium-service-card i {
    font-size: 44px;
    color: #E30613;
    margin-bottom: 20px;
}

.premium-service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-process {
    background: #111;
}

.process-card {
    background: rgba(255,255,255,.04);
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255,255,255,.06);
}

.process-number {
    font-size: 28px;
    font-weight: 800;
    color: #E30613;
    margin-bottom: 15px;
}

.process-card h5 {
    color: white;
    font-weight: 700;
}

.process-card p {
    color: rgba(255,255,255,.7);
    font-size: 14px;
}
/* MOBILE */
@media (max-width: 991px) {
    .newsletter-box {
        padding: 40px 25px;
    }

    .newsletter-box h2 {
        font-size: 32px;
    }

    .blog-meta {
        gap: 12px;
        font-size: 14px;
    }

    .blog-card-content h4 {
        font-size: 20px;
    }
}

/* PROCESS */
/* PREMIUM PROCESS SECTION */

.service-process {
    background:
        radial-gradient(circle at top center, rgba(227,6,19,.08), transparent 35%),
        linear-gradient(180deg, #050505 0%, #0d0d0d 100%);
    padding: 120px 0;
}

.service-process .section-heading span {
    color: #E30613;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-process .section-heading h2 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 20px;
}

.service-process .section-heading p {
    color: rgba(255,255,255,.72);
    font-size: 20px;
}

.process-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: .35s ease;
    backdrop-filter: blur(10px);
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(227,6,19,.5);
    box-shadow: 0 20px 50px rgba(227,6,19,.15);
}

.process-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #E30613, #ff2d3d);
    color: white;
    font-size: 26px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(227,6,19,.25);
}

.process-card h5 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-card p {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* MOBILE */
@media (max-width: 991px) {
    .service-process {
        padding: 80px 0;
    }

    .service-process .section-heading h2 {
        font-size: 36px;
    }

    .service-process .section-heading p {
        font-size: 16px;
    }

    .process-card {
        padding: 28px 18px;
    }

    .process-card h5 {
        font-size: 18px;
    }
}

/* PORTFOLIO */
.home-portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.home-portfolio-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .45s;
}

.home-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85);
    opacity: 0;
    transition: .35s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
}

.home-portfolio-card:hover .home-portfolio-overlay {
    opacity: 1;
}

.home-portfolio-card:hover img {
    transform: scale(1.08);
}

.home-portfolio-overlay span {
    color: #E30613;
    font-weight: 700;
}

.home-portfolio-overlay h3 {
    color: white;
    margin: 15px 0;
}

.home-portfolio-overlay a {
    background: #E30613;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
}

/* TESTIMONIAL */
.premium-testimonials {
    background: #f8f8f8;
}

.testimonial-premium-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0,0,0,.06);
    height: 100%;
}

.stars {
    color: #E30613;
    font-size: 22px;
    margin-bottom: 20px;
}

.testimonial-user {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* CTA */
.premium-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #000, #E30613);
    text-align: center;
}

.premium-cta span {
    color: rgba(255,255,255,.8);
    font-weight: 700;
}

.premium-cta h2 {
    color: white;
    font-size: 52px;
    font-weight: 800;
    margin: 20px 0;
}

.premium-cta p {
    color: rgba(255,255,255,.85);
    font-size: 20px;
    margin-bottom: 35px;
}

/* CONTACT */
.premium-contact {
    background: #fff;
}

.contact-info-premium {
    background: #111;
    padding: 45px;
    border-radius: 24px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    color: white;
}

.contact-info-item i {
    font-size: 24px;
    color: #E30613;
}

.premium-contact-form {
    background: #f8f8f8;
    padding: 45px;
    border-radius: 24px;
}

.premium-contact-form .form-control {
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid #ddd;
    box-shadow: none;
}

/* MOBILE */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .section-heading h2,
    .premium-section-title,
    .premium-cta h2 {
        font-size: 34px;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .floating-card {
        display: none;
    }

    .about-small-img {
        display: none;
    }

    .about-main-img {
        width: 100%;
    }

    .hero-trust {
        gap: 20px;
    }
}
/* HOMEPAGE PROCESS SECTION FIX ONLY */
.premium-process {
    background: #111 !important;
    padding: 100px 0 !important;
}

.premium-process .section-heading span {
    color: #E30613 !important;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}

.premium-process .section-heading h2 {
    color: #ffffff !important;
    font-size: 56px;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 20px;
}

.premium-process .section-heading p {
    color: rgba(255,255,255,.75) !important;
    font-size: 20px;
}

.premium-process .process-card {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 24px !important;
    padding: 35px 20px !important;
    text-align: center;
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .35s ease;
}

.premium-process .process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(227,6,19,.5) !important;
    box-shadow: 0 20px 50px rgba(227,6,19,.15);
}

.premium-process .process-card span {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #E30613, #ff2d3d);
    color: white;
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-process .process-card h5 {
    color: white !important;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 991px) {
    .premium-process .section-heading h2 {
        font-size: 36px;
    }

    .premium-process .section-heading p {
        font-size: 16px;
    }

    .premium-process .process-card {
        min-height: 180px;
        padding: 25px 15px !important;
    }

    .premium-process .process-card h5 {
        font-size: 18px;
    }
}
/* =========================================
   GLOBAL RESPONSIVE FIX PATCH
   ADD AT VERY END OF OLD CSS
========================================= */

/* LARGE TABLETS */
@media (max-width: 1199px) {

    h1 {
        font-size: 48px !important;
    }

    h2 {
        font-size: 40px !important;
    }

    .hero-title {
        font-size: 48px !important;
    }

    .service-hero .hero-title {
        font-size: 46px !important;
    }

    .section-heading h2 {
        font-size: 40px !important;
    }

    .premium-contact-form,
    .contact-form-box {
        padding: 30px !important;
    }
}

/* TABLETS */
@media (max-width: 991px) {

    body {
        overflow-x: hidden !important;
    }

    .container {
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    h1,
    .hero-title {
        font-size: 38px !important;
        line-height: 1.2 !important;
    }

    h2,
    .section-heading h2,
    .premium-section-title {
        font-size: 32px !important;
        line-height: 1.25 !important;
    }

    h3 {
        font-size: 26px !important;
    }

    h4 {
        font-size: 22px !important;
    }

    p {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    /* NAVBAR */
    .navbar-nav {
        gap: 0 !important;
        padding-top: 15px;
    }

    .navbar .nav-link {
        padding: 12px 0 !important;
    }

    .dropdown-menu {
        width: 100% !important;
        min-width: 100% !important;
        border-radius: 14px !important;
    }

    /* HERO */
    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100% !important;
        justify-content: center !important;
    }

    .hero-main-image,
    .service-hero-image,
    .service-overview-image,
    .about-main-img,
    .about-small-img {
        margin-top: 30px;
        width: 100% !important;
        height: auto !important;
    }

    /* ABOUT */
    .about-small-img {
        position: static !important;
        margin-top: 20px;
    }

    .experience-badge {
        position: static !important;
        margin-top: 20px;
        width: fit-content;
    }

    /* PROCESS */
    .process-card {
        min-height: auto !important;
        padding: 25px 15px !important;
    }

    .process-card h5 {
        font-size: 18px !important;
    }

    /* SERVICE CARDS */
    .premium-service-card,
    .why-card,
    .blog-card,
    .portfolio-card,
    .testimonial-premium-card {
        padding: 25px !important;
        height: auto !important;
    }

    /* CONTACT */
    .premium-contact-form,
    .contact-form-box,
    .contact-info-premium,
    .contact-info-box {
        padding: 25px !important;
        margin-top: 20px;
    }

    /* FORMS */
    .form-control,
    .form-select {
        height: 54px !important;
        font-size: 15px !important;
    }

    textarea.form-control {
        min-height: 160px !important;
    }

    /* FOOTER */
    .footer {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    h1,
    .hero-title {
        font-size: 30px !important;
    }

    h2,
    .section-heading h2,
    .premium-section-title {
        font-size: 26px !important;
    }

    p {
        font-size: 15px !important;
    }

    .section-heading {
        margin-bottom: 40px !important;
    }

    .hero-premium,
    .service-hero,
    .page-hero {
        padding: 70px 0 !important;
        min-height: auto !important;
    }

    .hero-trust {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .trust-item,
    .metric-box {
        width: 100% !important;
    }

    .premium-process .process-card {
        min-height: 160px !important;
    }

    .premium-process .process-card span {
        width: 55px !important;
        height: 55px !important;
        font-size: 18px !important;
    }

    .home-portfolio-card img,
    .blog-card img,
    .portfolio-card img {
        height: auto !important;
    }

    .contact-map iframe {
        height: 300px !important;
    }
}

/* SMALL MOBILE */
@media (max-width: 576px) {

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    h1,
    .hero-title {
        font-size: 26px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    .hero-badge {
        font-size: 11px !important;
        padding: 8px 14px !important;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 20px !important;
        font-size: 14px !important;
    }

    .premium-service-card,
    .why-card,
    .process-card,
    .testimonial-premium-card,
    .blog-card,
    .contact-form-box {
        padding: 20px !important;
        border-radius: 18px !important;
    }

    .process-number,
    .premium-process .process-card span {
        width: 50px !important;
        height: 50px !important;
        font-size: 16px !important;
    }

    .navbar-brand img {
        max-height: 42px !important;
    }

    .topbar {
        display: none !important;
    }
}
/* HEADER NAV FIX */
.navbar-nav .nav-link {
    font-weight: 600;
    transition: .3s;
}

.navbar-nav .nav-link:hover {
    opacity: .85;
}

.dropdown-menu {
    border-radius: 14px;
    min-width: 250px;
    padding: 10px;
}

.dropdown-item {
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #E30613;
    color: #fff;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #E30613;
        padding: 20px;
        border-radius: 14px;
        margin-top: 15px;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .dropdown-menu {
        width: 100%;
        min-width: 100%;
    }

    .btn.btn-dark {
        width: 100%;
        text-align: center;
    }
}
/* FOOTER MOBILE FIX */
@media (max-width: 991px) {

    .footer .row.g-5 {
        gap: 30px !important;
    }

    .footer img {
        height: 60px !important;
        margin: 0 auto;
        display: block;
    }

    .footer .col-lg-3,
    .footer .col-md-6 {
        text-align: center;
    }

    .footer .hightech-link {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer .contact-link,
    .footer .short-link,
    .footer .help-link {
        align-items: center !important;
    }

    .footer .contact-link a,
    .footer .short-link a,
    .footer .help-link a {
        word-break: break-word;
        text-align: center;
    }

    .footer h3 {
        font-size: 22px !important;
    }

    .footer p {
        font-size: 15px !important;
    }
}

@media (max-width: 576px) {

    .footer {
        padding-top: 40px !important;
    }

    .footer img {
        height: 50px !important;
    }

    .footer h3 {
        font-size: 20px !important;
    }

    .footer p,
    .footer a,
    .footer span {
        font-size: 14px !important;
        line-height: 1.6;
    }

    .footer .contact-link a {
        padding: 12px 0 !important;
    }

    .footer .btn-square {
        width: 40px !important;
        height: 40px !important;
        font-size: 14px;
    }

    .footer hr {
        margin-top: 30px !important;
        margin-bottom: 20px !important;
    }

    .footer .col-md-6 {
        margin-bottom: 10px;
    }

    .back-to-top {
        width: 42px !important;
        height: 42px !important;
        right: 15px !important;
        bottom: 15px !important;
    }
}
.google-review-direct {
    max-width: 500px;
    margin: auto;
    padding: 25px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
}

.google-review-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #111;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.google-review-button:hover {
    transform: translateY(-4px);
    color: #111;
}

.google-review-button i {
    font-size: 22px;
    color: #EA4335;
}
/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: translateY(-6px) scale(1.08);
    color: #fff;
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.65);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 56px;
        height: 56px;
        right: 15px;
        bottom: 15px;
        font-size: 30px;
    }
}