:root {
            --primary-color: #000000;
            --secondary-color: #D4AF37;
            --text-color: #FFFFFF;
            --text-secondary: #CCCCCC;
            --section-bg: #0A0A0A;
            --card-bg: #111111;
            --border-color: #222222;
            --gradient: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
            --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F9F295 50%, #D4AF37 100%);
            --transition: all 0.3s ease;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            --vh: 1vh; /* For mobile viewport height fix */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            touch-action: manipulation;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--primary-color);
            color: var(--text-color);
            overflow-x: hidden;
            padding-top: 80px; /* Add padding to prevent content from being hidden under fixed header */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            width: 100%;
            position: relative;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-color);
        }
        
        h1 {
            font-size: 4rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 3rem;
            line-height: 1.3;
        }
        
        h3 {
            font-size: 2rem;
            line-height: 1.4;
        }
        
        h4 {
            font-size: 1.5rem;
            line-height: 1.5;
        }
        
        p {
            font-family: 'Roboto', sans-serif;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        a {
            text-decoration: none;
            color: var(--secondary-color);
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--text-color);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold-gradient);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--gold-gradient);
            color: var(--primary-color);
            font-weight: 600;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
        }
        
        .btn:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .btn:hover {
            color: var(--secondary-color);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
        }
        
        .btn-outline:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
        }
        
        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader {
            width: 100px;
            height: 100px;
            position: relative;
        }
        
        .loader-circle {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid transparent;
            border-top-color: var(--secondary-color);
            border-radius: 50%;
            animation: spin 1.5s linear infinite;
        }
        
        .loader-circle:nth-child(2) {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            border-top-color: transparent;
            border-right-color: var(--secondary-color);
            animation: spin 2s linear infinite reverse;
        }
        
        .loader-circle:nth-child(3) {
            width: 60%;
            height: 60%;
            top: 20%;
            left: 20%;
            border-right-color: transparent;
            border-bottom-color: var(--secondary-color);
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Header - Fixed positioning */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            padding: 20px 0;
            background: rgba(0, 0, 0, 0.95); /* Make header always have background */
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        
        header.scrolled {
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
            z-index: 1001; /* Ensure logo stays above menu */
        }
        
        .logo img {
            width: 180px;
            height: auto;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text-color);
            font-weight: 500;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: var(--transition);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: var(--transition);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .nav-menu a:hover {
            color: var(--secondary-color);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001; /* Ensure hamburger stays above menu */
            position: relative; /* Reset position */
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-color);
            margin: 3px 0;
            transition: var(--transition);
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 600px; /* Prevent hero from being too small on mobile */
            display: flex;
            align-items: center;
            position: relative;
            /* background: var(--gradient); */
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: url('/images/about.jpg') center/cover no-repeat; */
            opacity: 0.15;
            z-index: -1;
        }
        
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .hero-content {
            max-width: 700px;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 30px;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: var(--text-secondary);
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator i {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-20px); }
            60% { transform: translateX(-50%) translateY(-10px); }
        }
        
        /* About Section */
        .about {
            background: var(--section-bg);
            position: relative;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-text h2 {
            margin-bottom: 30px;
            font-size: 3.5rem;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .about-text p {
            margin-bottom: 30px;
        }
        
        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gold-gradient);
            opacity: 0.1;
            z-index: 1;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        
        .stat-box {
            text-align: center;
            padding: 30px;
            background: var(--card-bg);
            border-radius: 10px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        
        .stat-box:hover {
            transform: translateY(-10px);
            border-color: var(--secondary-color);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
        }
        
        .stat-box h3 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .stat-box p {
            margin-bottom: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        /* Services Section */
        .services {
            background: var(--primary-color);
            position: relative;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 40px 30px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
            z-index: 1;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            border-color: var(--secondary-color);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gold-gradient);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .service-icon i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        .service-card h3 {
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .service-card p {
            margin-bottom: 25px;
        }
        
        .service-card .btn {
            font-size: 0.8rem;
            padding: 8px 20px;
        }
        
        /* Portfolio Section */
        .portfolio {
            background: var(--section-bg);
            position: relative;
        }
        
        .portfolio-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .filter-btn {
            padding: 8px 20px;
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
        }
        
        .filter-btn.active,
        .filter-btn:hover {
            background: var(--gold-gradient);
            color: var(--primary-color);
            border-color: var(--secondary-color);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .portfolio-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 300px;
            box-shadow: var(--box-shadow);
        }
        
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: var(--transition);
            padding: 20px;
            text-align: center;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay h3 {
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .portfolio-overlay p {
            margin-bottom: 25px;
            font-size: 1rem;
        }
        
        .portfolio-links {
            display: flex;
            gap: 15px;
        }
        
        .portfolio-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--gold-gradient);
            color: var(--primary-color);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: var(--transition);
        }
        
        .portfolio-links a:hover {
            background: var(--primary-color);
            color: var(--secondary-color);
            transform: scale(1.1);
        }
        
        /* Team Section */
        .team {
            background: var(--primary-color);
            position: relative;
        }
        
        /* .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        } */
         .team-grid {
           display: flex;
            justify-content: center; /* horizontal center */
            align-items: center;     /* vertical center */
            min-height: 100vh;       /* optional full height */
        }

        
        .team-member {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        
        .team-member:hover {
            transform: translateY(-15px);
        }
        
        .member-image {
            position: relative;
            height: 550px;
            overflow: hidden;
            border-radius: 20px;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-social {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            padding: 15px 0;
            display: flex;
            justify-content: center;
            gap: 15px;
            transform: translateY(100%);
            transition: var(--transition);
        }
        
        .team-member:hover .member-social {
            transform: translateY(0);
        }
        
        .member-social a {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--gold-gradient);
            color: var(--primary-color);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: var(--transition);
        }
        
        .member-social a:hover {
            background: var(--primary-color);
            color: var(--secondary-color);
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 25px;
            text-align: center;
        }
        
        .member-info h3 {
            margin-bottom: 5px;
            font-size: 1.5rem;
        }
        
        .member-info p {
            color: var(--secondary-color);
            margin-bottom: 0;
            font-size: 0.9rem;
        }
        
        /* Testimonials Section */
        .testimonials {
            background: var(--section-bg);
            position: relative;
        }
        
        .testimonials-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .testimonial-item {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 40px;
            border: 1px solid var(--border-color);
            text-align: center;
            position: relative;
        }
        
        .testimonial-item::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 5rem;
            font-family: 'Playfair Display', serif;
            color: var(--secondary-color);
            opacity: 0.2;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 30px;
            font-size: 1.2rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .author-info p {
            margin-bottom: 0;
            font-size: 0.9rem;
        }
        
        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .testimonial-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-color);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .testimonial-btn:hover {
            background: var(--gold-gradient);
            color: var(--primary-color);
            border-color: var(--secondary-color);
        }
        
        /* Pricing Section */
        .pricing {
            background: var(--primary-color);
            position: relative;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            position: relative;
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
            border-color: var(--secondary-color);
        }
        
        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--gold-gradient);
            color: var(--primary-color);
            padding: 5px 40px;
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            transform: rotate(45deg);
        }
        
        .pricing-card:hover {
            transform: translateY(-15px);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }
        
        .pricing-header {
            padding: 30px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }
        
        .pricing-header h3 {
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .price span {
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 400;
        }
        
        .pricing-body {
            padding: 30px;
        }
        
        .pricing-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
        }
        
        .pricing-list li:last-child {
            border-bottom: none;
        }
        
        .pricing-list li i {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        
        .pricing-footer {
            padding: 0 30px 30px;
            text-align: center;
        }
        
        /* Contact Section */
        .contact {
            background: var(--section-bg);
            position: relative;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contact-info h3 {
            margin-bottom: 30px;
            font-size: 2rem;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gold-gradient);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            font-size: 1.2rem;
            color: var(--primary-color);
        }
        
        .contact-text h4 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .contact-text p {
            margin-bottom: 0;
        }
        
        .contact-form {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        
        .form-group {
            margin-bottom: 10px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--text-secondary);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: var(--primary-color);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-color);
            font-family: 'Roboto', sans-serif;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .contact-form .btn {
            width: 100%;
            padding: 15px;
            font-size: 1rem;
        }
        
        /* Footer */
        footer {
            background: var(--primary-color);
            padding: 70px 0 0;
            position: relative;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .footer-widget h3 {
            margin-bottom: 25px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-widget h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold-gradient);
        }
        
        .footer-widget p {
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: var(--transition);
        }
        
        .footer-social a:hover {
            background: var(--gold-gradient);
            color: var(--primary-color);
            border-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .footer-newsletter .form-group {
            position: relative;
        }
        
        .footer-newsletter .btn {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            border-radius: 0 5px 5px 0;
            padding: 0 20px;
            font-size: 0.8rem;
        }
        
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding: 25px 0;
            text-align: center;
            position: relative;
        }
        
        .footer-bottom p {
            margin-bottom: 0;
            font-size: 0.9rem;
        }
        
        .footer-bottom a {
            color: var(--secondary-color);
        }
        
        /* Back to Top - Fixed positioning */
        .back-to-top {
            position: fixed;
            bottom: 70px; /* Moved up from 30px to 70px */
            right: 30px;
            /* z-index: 1001; */
            width: 50px;
            height: 50px;
            background: var(--gold-gradient);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            margin-bottom: 40px;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        /* Tawk.to Chat Widget */
        #tawkto-chat-container {
            position: fixed;
            bottom: 20px;
            right: 30px;
            z-index: 999;
            width: 320px;
            height: 400px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.2);
            display: none;
            overflow: hidden;
        }
        
        #tawkto-chat-container.active {
            display: block;
        }
        
        .tawkto-chat-header {
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 15px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .tawkto-chat-body {
            height: calc(100% - 120px);
            overflow-y: auto;
            padding: 15px;
            background: #f9f9f9;
        }
        
        .tawkto-chat-footer {
            padding: 15px;
            border-top: 1px solid #eee;
            display: flex;
            gap: 10px;
        }
        
        .tawkto-chat-input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .tawkto-chat-send {
            background: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            border-radius: 5px;
            padding: 10px 15px;
            cursor: pointer;
        }
        
        .tawkto-chat-bubble {
            position: fixed;
            bottom: 20px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--secondary-color);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 998;
            font-size: 24px;
        }
        
        .tawkto-chat-bubble:hover {
            transform: scale(1.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            h1 { font-size: 3.5rem; }
            h2 { font-size: 2.5rem; }
            h3 { font-size: 1.8rem; }
            
            .hero-content h1 { font-size: 3.5rem; }
            
            .portfolio-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
        }
        
        @media (max-width: 992px) {
            .section { padding: 80px 0; }
            
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: var(--transition);
                z-index: 999;
                padding-top: 80px; /* Add padding to account for header height */
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: flex;
                z-index: 1000;
            }
            
            .hero-content h1 { font-size: 3rem; }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-15px);
            }

            .member-image {
                height: 450px;
                border-radius: 30px;
            }
        }
        
        @media (max-width: 768px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            h3 { font-size: 1.6rem; }
            
            .section { padding: 60px 0; }
            
            .hero-content h1 { font-size: 2.5rem; }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .portfolio-grid { grid-template-columns: 1fr; }
            
            .testimonial-item { padding: 30px 20px; }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            /* Adjust back-to-top and tawk.to for mobile */
            .back-to-top {
                bottom: 80px;
                right: 20px;
                width: 40px;
                height: 40px;
                border-bottom: 40px;
            }
            
            #tawkto-chat-container {
                bottom: 20px;
                right: 20px;
                width: calc(100% - 40px);
                max-width: 350px;
            }
        }
        
        @media (max-width: 576px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            
            .hero-content h1 { font-size: 2.2rem; }
            
            .section-title { margin-bottom: 40px; }
            
            .service-card,
            .team-member,
            .pricing-card,
            .contact-form {
                padding: 30px 20px;
            }
            
            .nav-menu {
                width: 90%;
            }
            
            .back-to-top {
                bottom: 70px;
                right: 15px;
                width: 40px;
                height: 40px;
                border-bottom: 40px;
            }
            
            #tawkto-chat-container {
                bottom: 15px;
                right: 15px;
                width: calc(100% - 30px);
            }
            
            .tawkto-chat-bubble {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--secondary-color);
            border-radius: 50%;
            position: fixed;
            transform: translate(-50%, -50);
            pointer-events: none;
            transition: all 0.1s ease;
            z-index: 9999;
            mix-blend-mode: difference;
        }
        
        .cursor-follower {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            position: fixed;
            transform: translate(-50%, -50%);
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 9998;
        }
        
        .cursor.hover {
            transform: translate(-50%, -50%) scale(1.5);
            background: rgba(212, 175, 55, 0.1);
        }
        
        .cursor-follower.hover {
            transform: translate(-50%, -50%) scale(1.5);
        }
        
        /* Particles Background */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }
        
        /* Loading Animation */
        .loading-animation {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--secondary-color);
            animation: spin 1s ease-in-out infinite;
        }
        
        /* Form Success Message */
        .form-message {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: none;
        }
        
        .form-message.success {
            background: rgba(76, 175, 80, 0.2);
            border: 1px solid #4CAF50;
            color: #4CAF50;
        }
        
        .form-message.error {
            background: rgba(244, 67, 54, 0.2);
            border: 1px solid #F44336;
            color: #F44336;
        }
        
        /* Image Hover Effects */
        .img-hover-zoom {
            overflow: hidden;
        }
        
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        
        .img-hover-zoom:hover img {
            transform: scale(1.1);
        }
        
        /* Text Gradient */
        .text-gradient {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Gold Border */
        .gold-border {
            border: 1px solid var(--secondary-color);
        }
        
        /* Card Hover Effect */
        .card-hover {
            transition: var(--transition);
        }
        
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }
        
        /* Parallax Effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        /* Video Modal */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            justify-content: center;
            align-items: center;
        }
        
        .video-modal.active {
            display: flex;
        }
        
        .video-container {
            position: relative;
            width: 80%;
            max-width: 800px;
        }
        
        .video-container iframe {
            width: 100%;
            height: 450px;
        }
        
        .close-video {
            position: absolute;
            top: -40px;
            right: 0;
            color: var(--text-color);
            font-size: 2rem;
            cursor: pointer;
        }
        
        /* Counter Animation */
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        /* Progress Bar */
        .progress-bar {
            height: 8px;
            background: var(--border-color);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 10px;
        }
        
        .progress {
            height: 100%;
            background: var(--gold-gradient);
            width: 0;
            transition: width 1s ease;
        }
        
        /* Skill Bar */
        .skill-item {
            margin-bottom: 25px;
        }
        
        .skill-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .skill-header h4 {
            margin-bottom: 0;
            font-size: 1rem;
        }
        
        .skill-header span {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            padding: 20px 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            background: var(--border-color);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }
        
        .timeline-item:nth-child(odd) {
            padding-right: calc(50% + 30px);
            text-align: right;
        }
        
        .timeline-item:nth-child(even) {
            padding-left: calc(50% + 30px);
        }
        
        .timeline-dot {
            position: absolute;
            top: 5px;
            left: 50%;
            width: 20px;
            height: 20px;
            background: var(--gold-gradient);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }
        
        .timeline-content {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        
        .timeline-date {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Accordion */
        .accordion {
            margin-bottom: 20px;
        }
        
        .accordion-header {
            padding: 15px 20px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .accordion-header:hover {
            border-color: var(--secondary-color);
        }
        
        .accordion-header h4 {
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        
        .accordion-header i {
            transition: var(--transition);
        }
        
        .accordion-header.active i {
            transform: rotate(180deg);
        }
        
        .accordion-body {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .accordion-body.active {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Tabs */
        .tabs {
            display: flex;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
            flex-wrap: wrap;
        }
        
        .tab {
            padding: 15px 25px;
            cursor: pointer;
            position: relative;
            transition: var(--transition);
            font-weight: 500;
        }
        
        .tab::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .tab.active {
            color: var(--secondary-color);
        }
        
        .tab.active::after {
            transform: scaleX(1);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Blog Cards */
        .blog-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }
        
        .blog-image {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            flex-wrap: wrap;
        }
        
        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .blog-content h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .blog-content p {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .blog-content .btn {
            align-self: flex-start;
        }
        
        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 5px;
            overflow: hidden;
            height: 200px;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay i {
            font-size: 2rem;
            color: var(--secondary-color);
        }
        
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            justify-content: center;
            align-items: center;
        }
        
        .lightbox.active {
            display: flex;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .lightbox-content img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: var(--text-color);
            font-size: 2rem;
            cursor: pointer;
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
        }
        
        .lightbox-nav button {
            background: transparent;
            border: none;
            color: var(--text-color);
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .lightbox-nav button:hover {
            color: var(--secondary-color);
        }
        
        /* Process Steps */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50px;
            right: -15px;
            width: 30px;
            height: 2px;
            background: var(--border-color);
        }
        
        .step-number {
            width: 100px;
            height: 100px;
            background: var(--gold-gradient);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .process-step h3 {
            margin-bottom: 15px;
        }
        
        /* Clients */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .client-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 120px;
            transition: var(--transition);
            filter: grayscale(100%);
            opacity: 0.7;
        }
        
        .client-item:hover {
            filter: grayscale(0%);
            opacity: 1;
            border-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .client-item img {
            max-width: 100%;
            max-height: 100%;
        }
        
        /* Call to Action */
        .cta {
            background: var(--gradient);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/images/about.jpg') center/cover no-repeat;
            opacity: 0.1;
            z-index: -1;
        }
        
        .cta h2 {
            font-size: 3rem;
            margin-bottom: 30px;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .cta p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        /* Error 404 Page */
        .error-page {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }
        
        .error-code {
            font-size: 10rem;
            font-weight: 900;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: 20px;
        }
        
        .error-message {
            font-size: 2rem;
            margin-bottom: 30px;
        }
        
        /* Coming Soon Page */
        .coming-soon {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }
        
        .coming-soon h1 {
            font-size: 4rem;
            margin-bottom: 30px;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .countdown {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .countdown-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 20px;
            min-width: 100px;
        }
        
        .countdown-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            color: var(--text-secondary);
        }
        
        /* Maintenance Mode */
        .maintenance-mode {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }
        
        .maintenance-icon {
            font-size: 5rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
        }
        
        .maintenance-mode h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        /* Notification */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--card-bg);
            border-left: 4px solid var(--secondary-color);
            padding: 15px 20px;
            border-radius: 5px;
            box-shadow: var(--box-shadow);
            z-index: 10000;
            transform: translateX(120%);
            transition: transform 0.5s ease;
            max-width: 350px;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .notification-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .notification-title {
            font-weight: 600;
            color: var(--secondary-color);
            font-size: 1rem;
        }
        
        .notification-close {
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            font-size: 1.2rem;
        }
        
        .notification-message {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        /* Tooltips */
        .tooltip {
            position: relative;
            display: inline-block;
        }
        
        .tooltip .tooltiptext {
            visibility: hidden;
            width: 120px;
            background-color: var(--card-bg);
            color: var(--text-color);
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            margin-left: -60px;
            opacity: 0;
            transition: opacity 0.3s;
            border: 1px solid var(--border-color);
            font-size: 0.8rem;
        }
        
        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
        
        /* Loading Spinner */
        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            border-top-color: var(--secondary-color);
            animation: spin 1s ease-in-out infinite;
            margin: 0 auto;
        }
        
        /* Progress Circle */
        .progress-circle {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto;
        }
        
        .progress-circle svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }
        
        .progress-circle-bg {
            fill: none;
            stroke: var(--border-color);
            stroke-width: 10;
        }
        
        .progress-circle-fill {
            fill: none;
            stroke: var(--secondary-color);
            stroke-width: 10;
            stroke-linecap: round;
            stroke-dasharray: 440;
            stroke-dashoffset: 440;
            transition: stroke-dashoffset 1s ease;
        }
        
        .progress-circle-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        /* Enhanced Responsive Styles */
        @media (max-width: 1400px) {
            .container {
                max-width: 1140px;
            }
            
            h1 { font-size: 3.5rem; }
            h2 { font-size: 2.8rem; }
            
            .hero-content h1 { font-size: 3.5rem; }
        }
        /* Large Desktops and Laptops */
        @media (max-width: 1200px) {
            .container {
                max-width: 960px;
                padding: 0 15px;
            }
            
            h1 { font-size: 3.2rem; }
            h2 { font-size: 2.5rem; }
            h3 { font-size: 1.8rem; }
            
            .hero-content h1 { font-size: 3.2rem; }
            .hero-content p { font-size: 1.2rem; }
            
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        /* iPad Pro, Surface Pro 7 in landscape */
        @media (max-width: 1024px) {
            .container {
                max-width: 90%;
            }
            
            h1 { font-size: 3rem; }
            h2 { font-size: 2.3rem; }
            h3 { font-size: 1.7rem; }
            
            .hero-content h1 { font-size: 3rem; }
            
            .section { padding: 80px 0; }
            
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: var(--transition);
                z-index: 999;
                padding-top: 80px; /* Add padding to account for header height */
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: flex;
                z-index: 1000;
            }
        }
        /* iPad Mini, Surface Duo, Galaxy Z Fold 5 */
        @media (max-width: 768px) {
            .container {
                max-width: 100%;
                padding: 0 15px;
            }
            
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            
            .hero-content h1 { font-size: 2.5rem; }
            .hero-content p { font-size: 1.1rem; }
            
            .section { padding: 60px 0; }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .portfolio-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-15px);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .testimonial-item { padding: 30px 20px; }
        }
        /* iPhone 12 Pro, iPhone 14 Pro Max, Pixel 7, Samsung Galaxy S20 Ultra */
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            
            .hero-content h1 { font-size: 2.2rem; line-height: 1.2; }
            .hero-content p { font-size: 1rem; }
            
            .section { padding: 50px 0; }
            .section-title { margin-bottom: 40px; }
            
            .service-card,
            .team-member,
            .pricing-card,
            .contact-form {
                padding: 25px 20px;
            }
            
            .nav-menu {
                width: 85%;
            }
            
            .logo img {
                width: 140px;
            }
            
            .hero-buttons .btn {
                width: 100%;
                text-align: center;
            }
            
            .about-stats {
                gap: 15px;
            }
            
            .stat-box {
                padding: 20px;
            }
            
            .stat-box h3 {
                font-size: 2rem;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin: 0 0 15px 0;
            }
            
            .contact-text {
                text-align: center;
            }
            
            .back-to-top {
                bottom: 70px;
                right: 15px;
                width: 40px;
                height: 40px;
                border-bottom: 40px;
            }
            
            #tawkto-chat-container {
                bottom: 15px;
                right: 15px;
            }
        }
        /* iPhone SE, Samsung Galaxy S8+, Samsung Galaxy A51/71 */
        @media (max-width: 414px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.3rem; }
            
            .hero-content h1 { font-size: 2rem; }
            .hero-content p { font-size: 1rem; line-height: 1.6; }
            
            .section { padding: 40px 0; }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            
            .nav-menu {
                width: 90%;
            }
            
            .logo img {
                width: 120px;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
            }
            
            .service-icon i {
                font-size: 1.5rem;
            }
            
            .portfolio-item {
                height: 250px;
            }
            
            .member-image {
                height: 450px;
                border-radius: 30px;
            }
            
            .pricing-header h3 {
                font-size: 1.5rem;
            }
            
            .price {
                font-size: 2.5rem;
            }
            
            .contact-form {
                padding: 20px 15px;
            }
            
            .form-control {
                padding: 10px;
            }
            
            .back-to-top {
                bottom: 60px;
                right: 10px;
                width: 35px;
                height: 35px;
                border-bottom: 40px;
            }
            
            #tawkto-chat-container {
                bottom: 10px;
                right: 10px;
            }
        }
        /* iPhone XR */
        @media (max-width: 375px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.2rem; }
            
            .hero-content h1 { font-size: 1.8rem; }
            .hero-content p { font-size: 0.95rem; }
            
            .section { padding: 30px 0; }
            
            .btn {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
            
            .service-card {
                padding: 20px 15px;
            }
            
            .service-icon {
                width: 50px;
                height: 50px;
            }
            
            .service-icon i {
                font-size: 1.3rem;
            }
            
            .portfolio-item {
                height: 220px;
            }
            
            .member-image {
                height: 450px;
                border-radius: 30px;
            }
            
            .pricing-header {
                padding: 20px;
            }
            
            .pricing-body {
                padding: 20px;
            }
            
            .pricing-footer {
                padding: 0 20px 20px;
            }
            
            .back-to-top {
                bottom: 60px;
                right: 10px;
                width: 35px;
                height: 35px;
                border-bottom: 40px;
            }
            
            .back-to-top i {
                font-size: 0.9rem;
            }
            
            #tawkto-chat-container {
                bottom: 10px;
                right: 10px;
            }
        }
        /* Nest Hub and Nest Hub Max (Landscape) */
        @media (max-height: 800px) and (orientation: landscape) {
            .hero {
                height: auto;
                min-height: 100vh;
                padding: 100px 0;
            }
            
            .section {
                padding: 60px 0;
            }
            
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            
            .hero-content h1 { font-size: 2.5rem; }
            
            .about-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }
            
            .stat-box {
                padding: 15px;
            }
            
            .stat-box h3 {
                font-size: 1.8rem;
            }
            
            .stat-box p {
                font-size: 0.8rem;
            }
            
            .back-to-top {
                bottom: 80px;
                border-bottom: 40px;
            }
        }
        /* Galaxy Z Fold 5 (Folded) */
        @media (max-width: 280px) {
            h1 { font-size: 1.6rem; }
            h2 { font-size: 1.4rem; }
            h3 { font-size: 1.1rem; }
            
            .hero-content h1 { font-size: 1.6rem; line-height: 1.1; }
            .hero-content p { font-size: 0.9rem; }
            
            .section { padding: 30px 0; }
            
            .btn {
                padding: 8px 15px;
                font-size: 0.75rem;
            }
            
            .service-card {
                padding: 15px;
            }
            
            .service-icon {
                width: 45px;
                height: 45px;
            }
            
            .service-icon i {
                font-size: 1.2rem;
            }
            
            .portfolio-item {
                height: 200px;
            }
            
            .member-image {
                height: 450px;
                border-radius: 30px;
            }
            
            .pricing-header {
                padding: 15px;
            }
            
            .pricing-body {
                padding: 15px;
            }
            
            .pricing-footer {
                padding: 0 15px 15px;
            }
            
            .back-to-top {
                bottom: 60px;
                right: 10px;
                width: 30px;
                height: 30px;
                border-bottom: 40px;
            }
            
            .back-to-top i {
                font-size: 0.8rem;
            }
            
            #tawkto-chat-container {
                bottom: 10px;
                right: 10px;
            }
        }
        /* High DPI devices */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .logo img {
                image-rendering: -webkit-optimize-contrast;
            }
            
            .service-icon,
            .contact-icon {
                transform: translateZ(0);
            }
        }
        /* Touch devices */
        @media (hover: none) {
            .nav-menu a:hover::after,
            .btn:hover::before,
            .btn:hover {
                transform: none;
            }
            
            .service-card:hover,
            .team-member:hover,
            .pricing-card:hover,
            .portfolio-item:hover img {
                transform: none;
            }
            
            .portfolio-overlay {
                opacity: 1;
                background: rgba(0, 0, 0, 0.6);
            }
            
            .portfolio-links a {
                transform: scale(1);
            }
            
            .member-social {
                transform: translateY(0);
            }
            
            .stat-box:hover {
                transform: none;
            }
            
            .back-to-top:hover {
                transform: none;
            }
        }
        /* Fix for iOS Safari */
        @supports (-webkit-touch-callout: none) {
            body {
                -webkit-text-size-adjust: 100%;
            }
            
            .hero,
            .section {
                position: relative;
            }
        }
        /* Fix for Samsung Internet browser */
        @supports (-webkit-appearance: none) {
            .form-control,
            .btn {
                -webkit-appearance: none;
                border-radius: 0;
            }
            
            .btn {
                border-radius: 30px;
            }
        }
        /* Additional fixes for specific devices */
        /* iPhone 12 Pro */
        @media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
            .hero-content h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }
            
            .section {
                padding: 60px 0;
            }
        }
        /* iPhone 14 Pro Max */
        @media only screen and (device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) {
            .hero-content h1 {
                font-size: 2.4rem;
                line-height: 1.2;
            }
        }
        /* Pixel 7 */
        @media only screen and (device-width: 412px) and (device-height: 915px) and (-webkit-device-pixel-ratio: 2.625) {
            .hero-content h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }
        }
        /* Samsung Galaxy S8+ */
        @media only screen and (device-width: 360px) and (device-height: 740px) and (-webkit-device-pixel-ratio: 4) {
            .hero-content h1 {
                font-size: 2rem;
                line-height: 1.2;
            }
            
            .section {
                padding: 50px 0;
            }
        }
        /* Samsung Galaxy S20 Ultra */
        @media only screen and (device-width: 384px) and (device-height: 854px) and (-webkit-device-pixel-ratio: 3) {
            .hero-content h1 {
                font-size: 2.1rem;
                line-height: 1.2;
            }
        }
        /* iPad Mini */
        @media only screen and (device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) {
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .portfolio-grid,
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* Surface Pro 7 */
        @media only screen and (min-width: 1368px) and (max-width: 1400px) {
            .container {
                max-width: 1200px;
            }
        }
        /* Surface Duo */
        @media only screen and (device-width: 540px) and (device-height: 720px) and (-webkit-device-pixel-ratio: 2.5) {
            .hero-content h1 {
                font-size: 2.3rem;
                line-height: 1.2;
            }
            
            .section {
                padding: 50px 0;
            }
        }
        /* Galaxy Z Fold 5 (Unfolded) */
        @media only screen and (min-width: 2208px) {
            .container {
                max-width: 1800px;
            }
            
            h1 { font-size: 5rem; }
            h2 { font-size: 4rem; }
            
            .hero-content h1 { font-size: 5rem; }
        }
        /* Samsung Galaxy A51/71 */
        @media only screen and (device-width: 412px) and (device-height: 914px) and (-webkit-device-pixel-ratio: 2.625) {
            .hero-content h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }
        }
        /* Nest Hub */
        @media only screen and (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
            .hero {
                height: auto;
                min-height: 100vh;
                padding: 80px 0;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .about-stats {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        /* Nest Hub Max */
        @media only screen and (min-width: 1280px) and (orientation: landscape) {
            .hero {
                height: auto;
                min-height: 100vh;
                padding: 100px 0;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .about-stats {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        /* Fix for mobile viewport height */
        @media (max-width: 768px) {
            .hero {
                height: calc(var(--vh, 1vh) * 100);
                min-height: auto;
            }
        }
        /* Ensure back to top button is always visible on mobile */
        @media (max-width: 992px) {
            .back-to-top {
                opacity: 1;
                visibility: visible;
            }
        }
        
        /* Prevent zoom on input focus on iOS */
        @media screen and (max-width: 768px) {
            input, select, textarea {
                font-size: 16px !important;
            }
        }
        
        /* Prevent horizontal scroll */
        body, html {
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }
        
        /* Fix for iOS viewport units */
        .ios-fix {
            height: 100vh;
            height: -webkit-fill-available;
        }
        
        /* Fix for sticky hover states on mobile */
        @media (hover: none) and (pointer: coarse) {
            .service-card:hover,
            .team-member:hover,
            .pricing-card:hover,
            .portfolio-item:hover,
            .btn:hover {
                transform: none !important;
            }
        }