body {
            font-family: 'Inter', sans-serif;
            color: #333;
        }

        .navbar {
            padding: 1rem 0;
        }

        .btn-primary {
            background-color: #D2042D;
            border-color: #D2042D;
        }

        .btn-primary:hover {
            background-color: #AB031F;
            border-color: #AB031F;
        }

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

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

        .btn-outline-primary {
            color: #770017;
            border-color: #770017;
        }

        .btn-outline-primary:hover {
            background-color: #770017;
            border-color: #770017;
        }

        /* Header & Navigation Styling */
        .main-header {
            background: linear-gradient(135deg, #D2042D 0%, #770017 100%);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        /* More compact header for specific pages */
        body.compact-header .top-bar {
            padding: 4px 0;
        }

        body.compact-header .navbar {
            padding: 10px 0;
        }

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

        body.compact-header .social-links a {
            color: #fff;
        }

        .header-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .header-background::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #D2042D 0%, #770017 100%);
            z-index: 1;
        }

        .animated-circles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            animation: float 20s infinite;
            z-index: 0;
        }

        .circle:nth-child(1) {
            width: 150px;
            height: 150px;
            top: -75px;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .circle:nth-child(2) {
            width: 100px;
            height: 100px;
            top: 20%;
            right: 10%;
            animation-delay: 2s;
            animation-duration: 18s;
        }

        .circle:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: -40px;
            left: 30%;
            animation-delay: 4s;
            animation-duration: 22s;
        }

        .circle:nth-child(4) {
            width: 120px;
            height: 120px;
            bottom: 30%;
            right: 25%;
            animation-delay: 6s;
            animation-duration: 20s;
        }

        .circle:nth-child(5) {
            width: 60px;
            height: 60px;
            top: 40%;
            left: 15%;
            animation-delay: 8s;
            animation-duration: 15s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg) scale(1);
                opacity: 0.5;
            }

            25% {
                transform: translateY(-20px) rotate(90deg) scale(1.1);
                opacity: 0.7;
            }

            50% {
                transform: translateY(0) rotate(180deg) scale(1);
                opacity: 0.5;
            }

            75% {
                transform: translateY(20px) rotate(270deg) scale(0.9);
                opacity: 0.7;
            }

            100% {
                transform: translateY(0) rotate(360deg) scale(1);
                opacity: 0.5;
            }
        }

        .top-bar {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 8px 0;
        }

        .top-bar .contact-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-bar .contact-info a {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .top-bar .contact-info a:hover {
            color: #fff;
        }

        .top-bar .social-links a {
            color: rgba(255, 255, 255, 0.9);
            margin: 0 8px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .top-bar .social-links a:hover {
            color: #fff;
            transform: translateY(-2px);
        }

        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            position: relative;
            padding: 0;
        }

        .navbar-brand img {
            height: 50px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .logo-glow {
            position: absolute;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            top: 50%;
            left: 25px;
            transform: translateY(-50%);
            z-index: 1;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: translateY(-50%) scale(0.8);
                opacity: 0.5;
            }

            50% {
                transform: translateY(-50%) scale(1);
                opacity: 0.8;
            }

            100% {
                transform: translateY(-50%) scale(0.8);
                opacity: 0.5;
            }
        }

        .navbar-brand::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #fff;
            transition: width 0.3s ease;
        }

        .navbar-brand:hover::after {
            width: 100%;
        }

        .navbar-nav .nav-item {
            position: relative;
            margin: 0 5px;
        }

        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 10px 15px !important;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            letter-spacing: 0.5px;
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
            z-index: -1;
        }

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

        .navbar-nav .nav-link:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .navbar-nav .nav-link.active {
            color: #fff !important;
            background-color: rgba(255, 255, 255, 0.15);
        }

        .navbar-toggler {
            border: none;
            padding: 0;
            width: 30px;
            height: 30px;
            position: relative;
            background-color: transparent;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: none !important;
            position: relative;
            width: 30px;
            height: 2px;
            background-color: #fff;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        .navbar-toggler-icon::before {
            top: -8px;
        }

        .navbar-toggler-icon::after {
            bottom: -8px;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
            background-color: transparent;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
            transform: rotate(45deg);
            top: 0;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
            transform: rotate(-45deg);
            bottom: 0;
        }

        .header-btn {
            background-color: #fff;
            color: #D2042D !important;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            text-decoration: none !important;
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .header-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .header-btn:hover {
            background-color: transparent;
            color: #fff !important;
            border-color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            text-decoration: none !important;
        }

        .header-btn:hover::before {
            left: 100%;
        }

        .header-btn:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: #D2042D;
                padding: 20px;
                border-radius: 8px;
                margin-top: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }

            .navbar-nav .nav-item {
                margin: 5px 0;
            }
        }

        /* Header Animation Effects */
        .animate-header-item {
            animation: fadeInDown 0.5s both;
        }

        .animate-delay-1 {
            animation-delay: 0.1s;
        }

        .animate-delay-2 {
            animation-delay: 0.2s;
        }

        .animate-delay-3 {
            animation-delay: 0.3s;
        }

        .animate-delay-4 {
            animation-delay: 0.4s;
        }

        .animate-delay-5 {
            animation-delay: 0.5s;
        }

        .animate-delay-6 {
            animation-delay: 0.6s;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translate3d(0, -20px, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        /* Highlight effect */
        .highlight-container {
            position: relative;
            overflow: hidden;
        }

        .highlight-effect {
            position: absolute;
            top: -100%;
            left: -150%;
            width: 60px;
            height: 100px;
            background: rgba(255, 255, 255, 0.4);
            transform: rotate(30deg);
            transition: all 0.3s ease;
            filter: blur(10px);
            z-index: 0;
            animation: highlightMove 8s infinite;
        }

        @keyframes highlightMove {
            0% {
                top: -100%;
                left: -150%;
            }

            25% {
                top: 0;
                left: 100%;
            }

            50% {
                top: 100%;
                left: 200%;
            }

            75% {
                top: 50%;
                left: 300%;
            }

            100% {
                top: -100%;
                left: -150%;
            }
        }

        /* Enhanced Service Card Styling */
        .service-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: #D2042D;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: 2;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card .card-body {
            padding: 2rem;
        }

        .service-card .mb-4.text-primary {
            background-color: rgba(210, 4, 45, 0.1);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 1.5rem !important;
            transition: all 0.3s ease;
        }

        .service-card:hover .mb-4.text-primary {
            background-color: rgba(210, 4, 45, 0.2);
            transform: scale(1.1);
        }

        .service-card .card-title {
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .service-card .list-unstyled li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
        }

        .service-card .list-unstyled li i {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .footer {
            background-color: #770017;
            color: #fff;
            padding: 4rem 0 2rem;
        }

        .social-icons a {
            display: inline-block;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }

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

        /* Parallax effect */
        .parallax-header {
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .parallax-element {
            transform: translateZ(-10px) scale(1.5);
            transition: transform 0.1s;
        }

        .parallax-header.scrolling .parallax-element {
            transition: none;
        }

        .top-bar {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 8px 0;
        }

/* Hero Section Styles */
        .hero-section {
            background: linear-gradient(135deg, #770017, #D2042D);
            position: relative;
            overflow: hidden;
            padding: 60px 0;
            color: white;
            min-height: auto;
            height: auto;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .particles-js {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

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

        .quote-form-container {
            position: relative;
            z-index: 2;
            height: 100%;
        }

        .quote-form-container .card {
            border-radius: 15px;
            overflow: hidden;
            transform: perspective(1000px) rotateY(5deg);
            transition: all 0.5s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
        }

        .quote-form-container .card:hover {
            transform: perspective(1000px) rotateY(0deg) translateY(-10px);
        }

        .quote-form-container .card-header {
            background: linear-gradient(135deg, #770017, #D2042D) !important;
            border-bottom: none;
            padding: 20px;
        }

        .quote-form-container .form-control,
        .quote-form-container .form-select {
            border-radius: 6px;
            padding: 8px 12px;
            background-color: #f9f9f9;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .quote-form-container .form-control:focus,
        .quote-form-container .form-select:focus {
            background-color: #fff;
            border-color: #D2042D;
            box-shadow: 0 0 0 3px rgba(210, 4, 45, 0.1);
        }

        .quote-form-container .btn-primary {
            background: linear-gradient(135deg, #770017, #D2042D);
            border: none;
            border-radius: 8px;
            padding: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .quote-form-container .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(119, 0, 23, 0.3);
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .btn-glow {
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: all 0.3s ease;
            padding: 0.5rem 1.5rem;
            font-size: 0.95rem;
        }

        .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(210, 4, 45, 0.4);
        }

        .btn-glow::after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
            z-index: -1;
        }

        .btn-glow:hover::after {
            left: 100%;
        }

        .typed-cursor {
            color: #D2042D;
        }

        .shape {
            position: absolute;
            z-index: 1;
        }

        .shape-1 {
            top: 20%;
            left: 5%;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: shape1 15s linear infinite;
        }

        .shape-2 {
            top: 60%;
            right: 10%;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transform: rotate(45deg);
            animation: shape2 20s linear infinite;
        }

        .shape-3 {
            bottom: 10%;
            left: 15%;
            width: 120px;
            height: 30px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            animation: shape3 25s linear infinite;
        }

        @keyframes shape1 {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(100px, 50px) rotate(180deg);
            }

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

        @keyframes shape2 {
            0% {
                transform: translate(0, 0) rotate(45deg);
            }

            50% {
                transform: translate(-50px, 100px) rotate(225deg);
            }

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

        @keyframes shape3 {
            0% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(100px, -30px) scale(1.2);
            }

            100% {
                transform: translate(0, 0) scale(1);
            }
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            padding: 10px;
            margin-top: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2px;
            background: linear-gradient(90deg, #ffffff, #ffb3c0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Tech Icons Styles */
        .tech-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 3;
            pointer-events: none;
        }

        .tech-icon {
            position: absolute;
            width: 30px;
            height: 30px;
            filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
            opacity: 0.6;
        }

        .icon-1 {
            top: 5%;
            left: 10%;
            animation: iconFloat 8s ease-in-out infinite;
        }

        .icon-2 {
            top: 10%;
            right: 10%;
            animation: iconFloat 7s ease-in-out infinite 1s;
        }

        .icon-3 {
            bottom: 15%;
            left: 5%;
            animation: iconFloat 6s ease-in-out infinite 0.5s;
        }

        .icon-4 {
            bottom: 10%;
            right: 10%;
            animation: iconFloat 9s ease-in-out infinite 1.5s;
        }

        .icon-5 {
            top: 45%;
            right: 5%;
            animation: iconFloat 7.5s ease-in-out infinite 0.7s;
        }

        @keyframes iconFloat {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(15px, -15px) rotate(10deg);
            }

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

        .typed-text-wrapper {
            display: inline-block;
            min-height: 40px;
            /* Reduced height */
            vertical-align: middle;
        }

        .text-gradient {
            background: linear-gradient(90deg, #ffffff, #ffb3c0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding-right: 5px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .hero-section {
                padding: 40px 0;
                min-height: auto;
            }

            .typed-text-wrapper {
                min-height: 35px;
                /* Reduced height for mobile */
            }

            .tech-icon {
                width: 25px;
                height: 25px;
            }

            .stat-number {
                font-size: 1.25rem;
            }
        }

        /* Service Card Styles */
        .service-card {
            position: relative;
            overflow: visible;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1;
            border: none !important;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin-top: 60px;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(210, 4, 45, 0.2);
        }

        .service-card .card-header-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #770017, #D2042D);
            z-index: -1;
            border-radius: 8px;
        }

        .service-card .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            margin-top: -40px;
            position: relative;
            z-index: 3;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        .service-card .service-icon i {
            font-size: 32px;
            color: #D2042D;
            transition: all 0.4s ease;
        }

        .service-card h4 {
            margin-top: 25px;
            color: white;
            transition: all 0.3s ease;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .service-card .card-body {
            padding-bottom: 0;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            background-color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.4s ease;
        }

        .feature-icon i {
            font-size: 12px;
            color: #D2042D;
        }

        .service-card .feature-list {
            color: rgba(255, 255, 255, 0.9);
        }

        .service-card .btn-service {
            background-color: white;
            color: #D2042D;
            position: relative;
            z-index: 2;
            overflow: hidden;
            transition: all 0.4s ease;
            border-color: white;
            margin-top: 0;
        }

        .service-card .btn-service:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        }

        .service-card .card-footer {
            padding-top: 0;
            margin-top: 0;
        }

        @media (max-width: 768px) {
            .service-card {
                margin-top: 50px;
            }

            .service-icon {
                width: 70px;
                height: 70px;
                margin-top: -35px;
            }

            .service-icon i {
                font-size: 28px;
            }
        }

        /* Flip on scroll animation */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in-up.appear {
            opacity: 1;
            transform: translateY(0);
        }

        /* Make cards responsive */
        @media (max-width: 992px) {
            .service-card {
                margin-bottom: 20px;
            }
        }

        /* Why Choose Us Styles */
        .feature-box {
            position: relative;
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(210, 4, 45, 0.15);
        }

        .feature-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, #770017, #D2042D);
            transition: all 0.5s ease;
            z-index: -1;
            opacity: 0;
            border-radius: 15px;
        }

        .feature-box:hover::before {
            height: 100%;
            opacity: 1;
        }

        .feature-icon-wrap {
            position: relative;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(210, 4, 45, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .feature-box:hover .feature-icon-wrap {
            background: white;
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 32px;
            color: #D2042D;
            transition: all 0.4s ease;
        }

        .feature-box:hover .feature-icon {
            transform: rotate(-10deg);
        }

        .feature-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-title {
            color: white;
        }

        .feature-text {
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-text {
            color: rgba(255, 255, 255, 0.9) !important;
        }

        .feature-counter {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 72px;
            font-weight: 800;
            color: rgba(210, 4, 45, 0.05);
            transition: all 0.4s ease;
        }

        .feature-box:hover .feature-counter {
            color: rgba(255, 255, 255, 0.1);
            transform: scale(1.2);
        }

        .why-choose-img {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
        }

        .why-choose-img:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 45px rgba(210, 4, 45, 0.2);
        }

        .img-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(119, 0, 23, 0.8), transparent);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .why-choose-img:hover .img-overlay {
            opacity: 1;
        }

        .img-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #D2042D;
            color: white;
            padding: 10px 15px;
            border-radius: 30px;
            font-weight: 700;
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.6s ease;
        }

        .why-choose-img:hover .img-badge {
            transform: translateY(0);
            opacity: 1;
        }

        .why-choose-title {
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
        }

        .why-choose-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #D2042D;
            border-radius: 2px;
        }

        .stats-wrap {
            position: absolute;
            bottom: 30px;
            left: 30px;
            display: flex;
            gap: 20px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.6s ease;
        }

        .why-choose-img:hover .stats-wrap {
            transform: translateY(0);
            opacity: 1;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.8;
        }

        .btn-primary {
            background-color: #D2042D;
            border-color: #D2042D;
        }

        .btn-primary:hover {
            background-color: #AB031F;
            border-color: #AB031F;
        }

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

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

        .btn-outline-primary {
            color: #770017;
            border-color: #770017;
        }

        .btn-outline-primary:hover {
            background-color: #770017;
            border-color: #770017;
        }

        .portfolio-section {
            position: relative;
            overflow: hidden;
        }

        .portfolio-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            background: #fff;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .portfolio-img-container {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .portfolio-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

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

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .filter-btn {
            border-radius: 30px;
            padding: 8px 20px;
            transition: all 0.3s ease;
        }

        .filter-btn.active {
            background-color: var(--bs-primary);
            color: white;
        }

        .testimonial-card {
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.6;
            color: #444;
            position: relative;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 60px;
            color: rgba(210, 4, 45, 0.1);
            position: absolute;
            top: -20px;
            left: -15px;
            font-family: serif;
            z-index: 0;
        }

        .testimonial-rating {
            font-size: 18px;
        }

        .rounded-4 {
            border-radius: 16px !important;
        }

        .quote-form-container .form-label {
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }

        .quote-form-container .mb-3 {
            margin-bottom: 0.75rem !important;
        }

        .quote-form-container .mb-4 {
            margin-bottom: 1rem !important;
        }

.transform-hover {
                    transition: transform 0.3s ease;
                }

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

                .hover-bg-light:hover {
                    background-color: #f8f9fa;
                    color: #d2042d !important;
                    font-weight: 600;
                }

.offer-popup-overlay {
                                    position: fixed;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background-color: rgba(0, 0, 0, 0.5);
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    z-index: 9999;
                                    opacity: 0;
                                    visibility: hidden;
                                    transition: opacity 0.3s ease, visibility 0.3s ease;
                                }
                                
                                .offer-popup-overlay.visible {
                                    opacity: 1;
                                    visibility: visible;
                                }
                                
                                .offer-popup {
                                    position: relative;
                                    max-width: 90%;
                                    max-height: 90%;
                                    border-radius: 10px;
                                    overflow: auto;
                                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
                                    transform: scale(0.8);
                                    transition: transform 0.3s ease;
                                }
                                
                                .offer-popup-overlay.visible .offer-popup {
                                    transform: scale(1);
                                }
                                
                                .offer-popup-close {
                                    position: absolute;
                                    top: 10px;
                                    right: 15px;
                                    font-size: 24px;
                                    cursor: pointer;
                                    z-index: 1;
                                }
                                
                                .offer-popup-content {
                                    display: flex;
                                    flex-direction: column;
                                    padding: 20px;
                                }
                                
                                @media (min-width: 768px) {
                                    .offer-popup-content {
                                        flex-direction: ${popup.image ? 'row' : 'column'};
                                    }
                                }
                                
                                .offer-popup-image {
                                    flex: 0 0 auto;
                                    margin-bottom: 15px;
                                }
                                
                                @media (min-width: 768px) {
                                    .offer-popup-image {
                                        margin-bottom: 0;
                                        margin-right: 20px;
                                    }
                                }
                                
                                .offer-popup-image img {
                                    max-width: 100%;
                                    display: block;
                                    border-radius: 6px;
                                }
                                
                                .offer-popup-text {
                                    flex: 1;
                                }
                                
                                .offer-popup-text h3 {
                                    margin-top: 0;
                                    margin-bottom: 10px;
                                    font-size: 22px;
                                    font-weight: 600;
                                }
                                
                                .offer-popup-text p {
                                    margin-bottom: 20px;
                                }
                                
                                .offer-popup-button {
                                    display: inline-block;
                                    padding: 10px 20px;
                                    border-radius: 5px;
                                    text-decoration: none;
                                    font-weight: 600;
                                    transition: opacity 0.2s;
                                }
                                
                                .offer-popup-button:hover {
                                    opacity: 0.9;
                                    text-decoration: none;
                                }

.whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            color: #FFF;
            transform: scale(1.1);
        }

        @media screen and (max-width: 767px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }

