  :root {
            --primary: rgb(221, 172, 99);
            --primary-gradient: linear-gradient(135deg, rgb(221, 172, 99) 0%, rgb(241, 201, 143) 100%);
            --text: rgb(240, 240, 240);
            --bg-dark: #121212;
            --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            --card-bg: #1a1a1a;
            --border: #333333;
            --success: #4CAF50;
            --highlight: rgba(221, 172, 99, 0.2);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--bg-gradient);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        p {
            margin-bottom: 1.5rem;
        }
        
        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: rgb(241, 201, 143);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .header {
            background-color: var(--bg-dark);
            color: var(--text);
            padding: 1.5rem 0;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(221, 172, 99, 0.3);
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(221, 172, 99, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }
        
        .header-content {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
        }
        
        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
            color: var(--text);
        }
        
        .logo-text p {
            font-size: 1rem;
            margin: 0;
            color: var(--primary);
            opacity: 0.9;
        }
        
        .contact-info {
            display: flex;
            gap: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .contact-item i {
            font-size: 1.2rem;
            color: var(--primary);
        }
        
        .main {
            padding: 3rem 0;
        }
        
        .hero-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            background-color: var(--card-bg);
            padding: 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(221, 172, 99, 0.2);
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(221, 172, 99, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }
        
        .hero-content {
            flex: 1;
            position: relative;
            z-index: 2;
            padding-right: 2rem;
        }
        
        .hero-image {
            flex: 0 0 300px;
            position: relative;
            z-index: 2;
            height: 300px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(221, 172, 99, 0.3);
        }
        
        .hero-image iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-gradient);
            border-radius: 1.5px;
            transition: width 0.3s ease;
        }
        
        .section-title:hover::after {
            width: 100%;
        }
        
        .highlight {
            background-color: var(--highlight);
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
        }
        
        .card {
            background-color: var(--card-bg);
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(221, 172, 99, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }
        
        .card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(221, 172, 99, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
            border-radius: 0 0 0 100%;
            z-index: 1;
        }
        
        .card-content {
            position: relative;
            z-index: 2;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        .service-card {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .service-title {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }
        
        .skills-section {
            margin-bottom: 3rem;
        }
        
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .skill-category {
            margin-bottom: 2rem;
        }
        
        .skill-category h3 {
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            padding-bottom: 0.3rem;
        }
        
        .skill-category h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }
        
        .skill-category:hover h3::after {
            width: 100%;
        }
        
        .skill-list {
            list-style: none;
        }
        
        .skill-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            padding: 0.5rem 0.8rem;
            background-color: rgba(26, 26, 26, 0.7);
            border-radius: 4px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .skill-item:hover {
            transform: translateX(5px);
            background-color: rgba(221, 172, 99, 0.1);
            border-color: var(--primary);
        }
        
        .skill-item i {
            color: var(--primary);
            margin-right: 0.8rem;
            font-size: 1rem;
        }
        
        .experience-section {
            margin-bottom: 3rem;
        }
        
        .timeline {
            position: relative;
            padding-left: 1.5rem;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary) 0%, rgba(221, 172, 99, 0.2) 100%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
            padding-bottom: 1rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -2rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary-gradient);
            border: 2px solid var(--bg-dark);
            box-shadow: 0 0 0 4px rgba(221, 172, 99, 0.2);
            transition: all 0.3s ease;
        }
        
        .timeline-item:hover::before {
            transform: scale(1.2);
            box-shadow: 0 0 0 6px rgba(221, 172, 99, 0.3);
        }
        
        .timeline-date {
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .timeline-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .timeline-company {
            font-size: 1rem;
            margin-bottom: 0.8rem;
            color: rgba(240, 240, 240, 0.8);
        }
        
        .timeline-description {
            font-size: 0.95rem;
            color: rgba(240, 240, 240, 0.7);
        }
        
        .education-section {
            margin-bottom: 3rem;
        }
        
        .education-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(221, 172, 99, 0.1);
        }
        
        .education-item:last-child {
            border-bottom: none;
        }
        
        .education-date {
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .education-degree {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .education-institution {
            font-size: 1rem;
            margin-bottom: 0.8rem;
            color: rgba(240, 240, 240, 0.8);
        }
        
        .projects-section {
            margin-bottom: 3rem;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .project-card {
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .project-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 1px solid var(--border);
        }
        
        .project-content {
            padding: 1.5rem;
        }
        
        .project-title {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }
        
        .project-description {
            font-size: 0.95rem;
            color: rgba(240, 240, 240, 0.7);
            margin-bottom: 1rem;
        }
        
        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .project-link:hover {
            transform: translateX(5px);
        }
        
        .testimonials-section {
            margin-bottom: 3rem;
        }
        
        .testimonial-card {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .testimonial-card::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 5rem;
            color: rgba(221, 172, 99, 0.1);
            position: absolute;
            top: 10px;
            left: 10px;
            line-height: 1;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 2;
            font-style: italic;
            margin-bottom: 1rem;
            color: rgba(240, 240, 240, 0.9);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
        }
        
        .testimonial-info h4 {
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }
        
        .testimonial-info p {
            font-size: 0.9rem;
            color: var(--primary);
            margin: 0;
        }
        
        .cta-section {
            background-color: var(--bg-dark);
            color: var(--text);
            padding: 2.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(221, 172, 99, 0.2);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(221, 172, 99, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
            transition: opacity 0.5s ease;
        }
        
        .cta-section:hover::before {
            opacity: 0.8;
            background: linear-gradient(135deg, rgba(221, 172, 99, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-section h2 {
            color: var(--text);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .cta-section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: width 0.5s ease;
        }
        
        .cta-section:hover h2::after {
            width: 80%;
        }
        
        .cta-section p {
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .btn {
            position: relative;
            display: inline-block;
            padding: 0;
            border-radius: 4px;
            font-weight: 500;
            text-align: center;
            cursor: pointer;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            position: relative;
            z-index: 3;
            transition: transform 0.3s ease;
        }
        
        .btn:hover .btn-content {
            transform: scale(1.05);
        }
        
        .btn i {
            transition: transform 0.3s ease;
        }
        
        .btn:hover i {
            transform: translateX(-3px);
        }
        
        .btn-text {
            transition: transform 0.3s ease;
        }
        
        .btn:hover .btn-text {
            transform: translateX(3px);
        }
        
        /* Primary button styles */
        .btn-primary {
            background: var(--primary-gradient);
            color: #121212;
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .btn-primary .btn-content {
            color: #121212; /* Ensure text is dark on gold background */
        }
        
        .btn-primary .btn-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
            opacity: 0;
            z-index: 2;
            transition: opacity 0.5s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(221, 172, 99, 0.3);
            text-decoration: none;
        }
        
        .btn-primary:hover .btn-glow {
            opacity: 0.2;
            animation: pulse 1.5s infinite;
        }
        
        /* Outline button styles */
        .btn-outline {
            background-color: transparent;
            color: var(--text);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .btn-outline .btn-content {
            color: var(--text); /* Ensure text is light on transparent background */
        }
        
        .btn-outline .btn-border {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid var(--primary);
            border-radius: 4px;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            text-decoration: none !important;
        }
        
        .btn-outline:hover .btn-border {
            border-color: transparent;
            box-shadow: inset 0 0 0 2px var(--primary);
            animation: borderPulse 1.5s infinite;
        }
        
        .btn-outline:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(221, 172, 99, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .btn-outline:hover:before {
            opacity: 1;
        }
        
        .btn a {
            text-decoration: none !important;
        }
        
        .btn:hover {
            text-decoration: none !important;
        }
        
        a.btn:hover {
            text-decoration: none !important;
        }
        
        @keyframes pulse {
            0% {
                opacity: 0.2;
                transform: scale(1);
            }
            50% {
                opacity: 0.3;
                transform: scale(1.05);
            }
            100% {
                opacity: 0.2;
                transform: scale(1);
            }
        }
        
        @keyframes borderPulse {
            0% {
                box-shadow: inset 0 0 0 2px var(--primary), 0 0 0 0 rgba(221, 172, 99, 0.3);
            }
            50% {
                box-shadow: inset 0 0 0 2px var(--primary), 0 0 0 10px rgba(221, 172, 99, 0);
            }
            100% {
                box-shadow: inset 0 0 0 2px var(--primary), 0 0 0 0 rgba(221, 172, 99, 0);
            }
        }
        
        .footer {
            background-color: var(--bg-dark);
            color: var(--text);
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid rgba(221, 172, 99, 0.3);
        }
        
        .footer p {
            margin: 0;
            opacity: 0.8;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1rem 0;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(221, 172, 99, 0.1);
            color: var(--primary);
            transition: all 0.3s ease;
            border: 1px solid rgba(221, 172, 99, 0.3);
        }
        
        .social-link:hover {
            background-color: var(--primary);
            color: #121212;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            text-decoration: none;
        }
        
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: var(--primary-gradient);
            width: 0%;
            z-index: 1000;
            transition: width 0.2s ease;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: #121212;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Tabs for portfolio section */
        .tabs {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
        }
        
        .tab-btn {
            padding: 0.8rem 1.5rem;
            background-color: transparent;
            border: none;
            color: var(--text);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            margin-right: 0.5rem;
            margin-bottom: -1px;
        }
        
        .tab-btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }
        
        .tab-btn:hover::after,
        .tab-btn.active::after {
            width: 100%;
        }
        
        .tab-btn.active {
            color: var(--primary);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .hero-section {
                flex-direction: column;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 2rem;
            }
            
            .hero-image {
                flex: 0 0 100%;
                max-width: 300px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 0.8rem;
            }
            
            .services-grid,
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .skills-container {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .cta-buttons .btn {
                width: 100%;
            }
        }
        
        /* Print styles */
        @media print {
            body {
                background-color: white;
                color: black;
            }
            
            .header, .cta-section, .footer, .back-to-top, .progress-bar {
                display: none;
            }
            
            .container {
                max-width: 100%;
                padding: 0;
            }
            
            .card, .service-card, .project-card, .testimonial-card {
                box-shadow: none;
                border: 1px solid #ddd;
                background-color: white;
            }
            
            h1, h2, h3, h4, h5, h6 {
                color: black;
            }
            
            .highlight {
                background-color: #f5f5f5;
            }
            
            .section-title::after,
            .skill-category h3::after {
                background: #ddd;
            }
            
            .timeline::before {
                background: #ddd;
            }
            
            .timeline-item::before {
                background: white;
                border: 2px solid #ddd;
                box-shadow: none;
            }
            
            .skill-item, .service-card {
                background-color: white;
                border: 1px solid #ddd;
            }
            
            .skill-item i, .service-icon {
                color: #333;
            }
        }

        /* Iframe overlay styles */
.iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    z-index: 3;
}

.hero-image:hover .iframe-overlay {
    opacity: 1;
}

.iframe-button {
    background: var(--primary-gradient);
    color: #121212;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(221, 172, 99, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.iframe-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(221, 172, 99, 0.3);
    color: #121212;
    text-decoration: none;
}

.iframe-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.iframe-button:hover::after {
    opacity: 0.2;
    animation: pulse 1.5s infinite;
}

.iframe-button i {
    font-size: 14px;
}

/* Add responsive styles for iframe button */
@media (max-width: 768px) {
    .iframe-button {
        padding: 0.6rem 1.2rem;
        font-size: 12px;
    }
}