
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #C41E3A;
            --primary-light: #e83e5a;
            --primary-dark: #9a142c;
            --light-primary: #F8D7DA;
            --secondary: #1A1A1A;
            --accent: #D4AF37;
            --accent-light: #e6c362;
            --white: #FFFFFF;
            --off-white: #F8F8F8;
            --black: #222222;
            --gray: #777777;
            --light-gray: #F0F0F0;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--black);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
            
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--black);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            text-align: center;
            letter-spacing: 0.5px;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn:active {
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }
        
        section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title h2 {
            font-size: 42px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 18px;
            max-width: 600px;
            margin: 15px auto 0;
            color: var(--gray);
        }
        
        /* Header Styles - REDESIGNED */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: var(--transition);
            height: 80px;
        }
        
        header.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.98);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        
        .logo-img {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--black);
            text-decoration: none;
            white-space: nowrap;
        }
        
        .logo-text span {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* Navigation Styles - REDESIGNED */
        nav {
            display: flex;
            align-items: center;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
            margin: 0;
            padding: 0;
        }
        
        nav ul li {
            margin: 0;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--black);
            font-weight: 500;
            font-size: 16px;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: var(--transition);
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--black);
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .mobile-menu-btn:hover {
            background-color: var(--light-primary);
        }
        
        /* Hero Section - ENHANCED */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding-top: 100px;
            position: relative;
            overflow: hidden;
            
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(196, 30, 58, 0.2), transparent);
            z-index: 1;
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size: 64px;
            margin-bottom: 25px;
            color: var(--white);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 22px;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.2s both;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .hero-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 80px;
            animation: fadeInUp 1s ease 0.6s both;
        }
        
        .stat-item {
            text-align: center;
            position: relative;
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--accent);
        }
        
        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 18px;
            color: var(--light-gray);
        }
        
        /* Services Section - ENHANCED */
        .services {
            background-color: var(--off-white);
            position: relative;
        }
        
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23f0f0f0"><path d="M0 0v100l1000-50V0z"/></svg>') no-repeat bottom;
            background-size: cover;
            z-index: 0;
        }
        
        .services .container {
            position: relative;
            z-index: 1;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px;
            color: var(--white);
            font-size: 32px;
            box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
        }
        
        .service-img {
            height: 200px;
            background-color: var(--light-gray);
            background-position: center;
            background-size: cover;
            position: relative;
        }
        
        .service-content {
            padding: 30px;
            text-align: center;
        }
        
        .service-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .service-content p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        /* About Section - ENHANCED */
        .about {
            position: relative;
            overflow: hidden;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }
        
        .about-img::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            z-index: -1;
            border-radius: 10px;
        }
        
        .about-img::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            z-index: -1;
            border-radius: 10px;
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .about-text h3 {
            font-size: 36px;
            margin-bottom: 25px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 17px;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border-radius: 10px;
            transition: var(--transition);
        }
        
        .feature-item:hover {
            background-color: var(--light-primary);
            transform: translateX(5px);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white);
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(196, 30, 58, 0.3);
        }
        
        /* Owner Section - ENHANCED */
        .owner {
            background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
            position: relative;
        }
        
        .owner::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--light-primary) 0%, transparent 70%);
            opacity: 0.5;
        }
        
        .owner-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .owner-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .owner-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .owner-img:hover img {
            transform: scale(1.05);
        }
        
        .owner-text h3 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .owner-text p {
            margin-bottom: 20px;
            font-size: 17px;
        }
        
        .credentials {
            margin-top: 30px;
            padding-left: 25px;
            border-left: 4px solid var(--primary);
        }
        
        .credentials h4 {
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        .credentials ul {
            list-style: none;
        }
        
        .credentials li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }
        
        .credentials li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        /* Portfolio Section - ENHANCED */
        .portfolio {
            background-color: var(--off-white);
            position: relative;
        }
        
        .portfolio::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff"><path d="M0 0v100l1000-50V0z"/></svg>') no-repeat bottom;
            background-size: cover;
            z-index: 0;
        }
        
        .portfolio .container {
            position: relative;
            z-index: 1;
        }
        
       /* Update the portfolio grid to use auto rows */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: auto; /* Auto height for rows */
    gap: 20px;
}

.portfolio-item {
    background-color: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.portfolio-item img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
    transition: var(--transition);
}
        
       
        
        .portfolio-item:hover img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            padding: 25px;
            opacity: 0;
            transition: var(--transition);
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-overlay h3 {
            color: var(--white);
            font-size: 22px;
            margin-bottom: 5px;
            transform: translateY(20px);
            transition: var(--transition);
        }
        
        .portfolio-overlay p {
            color: var(--light-gray);
            transform: translateY(20px);
            transition: var(--transition) 0.1s;
        }
        
        .portfolio-item:hover .portfolio-overlay h3,
        .portfolio-item:hover .portfolio-overlay p {
            transform: translateY(0);
        }
        
        .portfolio-cta {
            text-align: center;
            margin-top: 50px;
        }
        
        /* Testimonials Section - ENHANCED */
        .testimonials {
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            color: var(--white);
            text-align: center;
            position: relative;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23C41E3A" opacity="0.1"><path d="M0 0h100v100H0z"/></svg>');
            background-size: 50px;
        }
        
        .testimonials h2 {
            color: var(--white);
        }
        
        .testimonial-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial-slide {
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin: 0 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .testimonial-text {
            font-size: 20px;
            font-style: italic;
            margin-bottom: 25px;
            line-height: 1.8;
            position: relative;
        }
        
        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 60px;
            color: var(--primary);
            position: absolute;
            opacity: 0.3;
        }
        
        .testimonial-text::before {
            top: -20px;
            left: -10px;
        }
        
        .testimonial-text::after {
            bottom: -40px;
            right: -10px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
            font-size: 18px;
        }
        
        .testimonial-role {
            color: var(--light-gray);
            font-size: 16px;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .testimonial-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }
        
        /* Contact Section - ENHANCED */
        .contact {
            position: relative;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background-color: var(--off-white);
            border-radius: 15px;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white);
            font-size: 24px;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
        }
        
        .contact-details h3 {
            margin-bottom: 8px;
            font-size: 20px;
        }
        
        .contact-form {
            background-color: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
            outline: none;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer - ENHANCED */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 80px 0 30px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 22px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .footer-col p {
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
            font-size: 18px;
        }
        
        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            transform: translateY(-5px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a::before {
            content: '›';
            color: var(--primary);
            font-weight: bold;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .footer-links a:hover::before {
            transform: translateX(5px);
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* NEW: Process Section */
        .process {
            background-color: var(--white);
            position: relative;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .process-step {
            text-align: center;
            padding: 30px;
            background: var(--off-white);
            border-radius: 15px;
            transition: var(--transition);
            position: relative;
        }
        
        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white);
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
        }
        
        .step-content h4 {
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        /* NEW: CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-align: center;
            padding: 100px 0;
        }
        
        .cta-section h2 {
            color: var(--white);
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .cta-btn {
            background: var(--white);
            color: var(--primary);
        }
        
        .cta-btn:hover {
            background: var(--accent);
            color: var(--white);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 10px 25px rgba(196, 30, 58, 0.5);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
            }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
            }
        }
        
        /* NEW: Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            box-shadow: var(--shadow-md);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
        }
        

        /* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 54px;
            }
        }
        
        @media (max-width: 992px) {
            .about-content,
            .owner-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 46px;
            }
            
            .about-img,
            .owner-img {
                order: -1;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 30px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .cta-btns {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: var(--white);
                transition: var(--transition);
                box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
                z-index: 999;
                padding: 40px 0;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 0 40px;
                gap: 20px;
            }
            
            nav ul li {
                margin: 0 0 25px 0;
            }
            
            nav ul li a {
                font-size: 18px;
            }
            
            .hero-content h1 {
                font-size: 38px;
            }
            
            .hero-content p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 34px;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .services-grid,
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-slide {
                padding: 25px;
            }
            
            .contact-form {
                padding: 25px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .btn {
                padding: 12px 25px;
                width: 100%;
                max-width: 250px;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 30px;
            }
            
            .stat-number {
                font-size: 36px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .logo-text {
                font-size: 20px;
            }
            
            .logo-img {
                width: 40px;
                height: 40px;
            }
            
            .cta-section h2 {
                font-size: 32px;
            }
        }
