
      :root {
        --primary: #2563eb;
        --secondary: #1e40af;
        --accent: #f97316;
        --light: #f8fafc;
        --dark: #0f172a;
        --gray: #64748b;
        --transition: all 0.3s ease;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      }

      body {
        background-color: var(--light);
        color: var(--dark);
        line-height: 1.6;
        overflow-x: hidden;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      /* Animated Background */
      .animated-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0.1;
        overflow: hidden;
      }

      .bg-shape {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
        filter: blur(30px);
        opacity: 0.2;
        animation: float 25s infinite linear;
      }

      .bg-shape:nth-child(1) {
        width: 300px;
        height: 300px;
        top: 10%;
        left: 5%;
        animation-duration: 20s;
      }

      .bg-shape:nth-child(2) {
        width: 200px;
        height: 200px;
        top: 60%;
        left: 80%;
        animation-duration: 25s;
        animation-delay: -5s;
      }

      .bg-shape:nth-child(3) {
        width: 150px;
        height: 150px;
        top: 30%;
        left: 40%;
        animation-duration: 15s;
        animation-delay: -10s;
      }

      .bg-shape:nth-child(4) {
        width: 250px;
        height: 250px;
        top: 75%;
        left: 20%;
        animation-duration: 30s;
        animation-delay: -15s;
      }

      @keyframes float {
        0% {
          transform: translate(0, 0) rotate(0deg);
        }
        25% {
          transform: translate(50px, 100px) rotate(90deg);
        }
        50% {
          transform: translate(100px, 0) rotate(180deg);
        }
        75% {
          transform: translate(-50px, -100px) rotate(270deg);
        }
        100% {
          transform: translate(0, 0) rotate(360deg);
        }
      }

      /* Header Styles */
      header {
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        transition: var(--transition);
      }

      header.scrolled {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 5px 0;
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        transition: var(--transition);
      }

      header.scrolled .navbar {
        padding: 10px 0;
      }

      .logo {
        font-size: 28px;
        font-weight: 800;
        color: var(--primary);
        text-decoration: none;
        transition: var(--transition);
        display: flex;
        align-items: center;
      }

      header.scrolled .logo {
        font-size: 24px;
      }

      .logo span {
        color: var(--accent);
      }

      .nav-links {
        display: flex;
        list-style: none;
      }

      .nav-links li {
        margin-left: 30px;
      }

      .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 600;
        font-size: 16px;
        transition: var(--transition);
        position: relative;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: var(--transition);
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .nav-links a:hover {
        color: var(--primary);
      }

      .btn {
        display: inline-block;
        background: var(--primary);
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        border: 2px solid var(--primary);
        position: relative;
        overflow: hidden;
        z-index: 1;
      }

      .btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: white;
        transition: var(--transition);
        z-index: -1;
      }

      .btn:hover::before {
        width: 100%;
      }

      .btn:hover {
        background: transparent;
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
      }

      .btn-outline {
        background: transparent;
        color: #1e40af;
      }

      .btn-outline:hover {
        background: white;
      }

      .menu-toggle {
        display: none;
        cursor: pointer;
        font-size: 24px;
        z-index: 1001;
      }

      /* Hero Section */
      .hero {
        padding: 160px 0 100px;
        position: relative;
      }

      .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
      }

      .background-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.15;
      }

      .hero-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
      }

      .hero-text {
        flex: 1;
        padding-right: 50px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1s ease, transform 1s ease;
        min-width: 300px;
      }

      .hero-text.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .hero-text h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: 20px;
        line-height: 1.2;
        color: var(--dark);
      }

      .hero-text h1 span {
        color: var(--primary);
        position: relative;
      }

      .hero-text h1 span::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 10px;
        z-index: -1;
      }

      .hero-text p {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        color: var(--gray);
        margin-bottom: 30px;
      }

      .hero-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
      }

      .hero-image {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 1s ease, transform 1s ease;
        transition-delay: 0.3s;
        min-width: 300px;
        margin-top: 30px;
      }

      .hero-image.visible {
        opacity: 1;
        transform: translateX(0);
        animation: floatImage 6s ease-in-out infinite;
      }

      @keyframes floatImage {
        0% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-20px);
        }
        100% {
          transform: translateY(0);
        }
      }

      .hero-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      }

      /* Text Effect */
      .typing-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 10px;
      }

      .static-text {
        margin-right: 8px;
        white-space: nowrap;
      }

      .animated-text {
        display: inline-block;
        min-width: 10px;
        color: var(--accent);
        position: relative;
      }

      .animated-text::after {
        content: "|";
        animation: blink 0.7s infinite;
        position: absolute;
        right: -10px;
        top: 0;
      }

      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0;
        }
      }

      /* Services Section */
      .services {
        padding: 100px 0;
        background-color: white;
      }

      .section-title {
        text-align: center;
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1s ease, transform 1s ease;
      }

      .section-title.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .section-title h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        color: var(--dark);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--primary);
        border-radius: 2px;
      }

      .section-title p {
        color: var(--gray);
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
        max-width: 700px;
        margin: 0 auto;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
      }

      .service-card {
        background: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
        animation: floatCard 6s ease-in-out infinite;
      }

      /* Different floating delays for a wave effect */
      .service-card:nth-child(1) { animation-delay: 0s; }
      .service-card:nth-child(2) { animation-delay: 1s; }
      .service-card:nth-child(3) { animation-delay: 2s; }
      .service-card:nth-child(4) { animation-delay: 3s; }
      .service-card:nth-child(5) { animation-delay: 4s; }
      .service-card:nth-child(6) { animation-delay: 5s; }

      @keyframes floatCard {
        0% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-15px);
        }
        100% {
          transform: translateY(0);
        }
      }

      .service-card.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .service-icon {
        width: 70px;
        height: 70px;
        background: rgba(37, 99, 235, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: var(--primary);
        font-size: 28px;
        transition: var(--transition);
        animation: rotateIcon 8s linear infinite;
      }

      @keyframes rotateIcon {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      .service-card:hover .service-icon {
        background: var(--primary);
        color: white;
        animation-duration: 2s;
      }

      .service-card h3 {
        font-size: clamp(1.3rem, 1.5vw, 1.5rem);
        margin-bottom: 15px;
        color: var(--dark);
      }

      .service-card p {
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        color: var(--gray);
        line-height: 1.6;
      }

      /* Portfolio Section */
      .portfolio {
        padding: 100px 0;
        background: linear-gradient(
          135deg,
          rgba(37, 99, 235, 0.05) 0%,
          rgba(249, 115, 22, 0.05) 100%
        );
      }

      .portfolio-filters {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }

      .portfolio-filters.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .filter-btn {
        background: white;
        border: none;
        padding: 10px 20px;
        margin: 5px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        z-index: 1;
        font-size: clamp(0.9rem, 1.5vw, 1rem);
      }

      .filter-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: var(--primary);
        transition: var(--transition);
        z-index: -1;
      }

      .filter-btn.active,
      .filter-btn:hover {
        color: white;
      }

      .filter-btn.active::before,
      .filter-btn:hover::before {
        width: 100%;
      }

      /* Portfolio Grid Styles */
      .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
      }

      .portfolio-item {
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        height: 250px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        animation: floatItem 6s ease-in-out infinite;
      }

      /* Different floating delays for a wave effect */
      .portfolio-item:nth-child(1) { animation-delay: 0s; }
      .portfolio-item:nth-child(2) { animation-delay: 1s; }
      .portfolio-item:nth-child(3) { animation-delay: 2s; }
      .portfolio-item:nth-child(4) { animation-delay: 3s; }
      .portfolio-item:nth-child(5) { animation-delay: 4s; }
      .portfolio-item:nth-child(6) { animation-delay: 5s; }

      @keyframes floatItem {
        0% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-15px);
        }
        100% {
          transform: translateY(0);
        }
      }

      .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
      }

      .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(52, 152, 219, 0.85) 0%, rgba(142, 68, 173, 0.85) 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.5s ease;
        padding: 20px;
        text-align: center;
      }

      .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
      }

      .portfolio-item:hover img {
        transform: scale(1.1);
      }

      .portfolio-overlay h3 {
        color: white;
        margin-bottom: 10px;
        transform: translateY(20px);
        transition: all 0.5s ease;
        transition-delay: 0.1s;
        font-size: 1.4rem;
      }

      .portfolio-overlay p {
        color: rgba(255, 255, 255, 0.9);
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.5s ease;
        transition-delay: 0.2s;
        font-size: 1rem;
        margin-bottom: 15px;
      }

      .portfolio-item:hover .portfolio-overlay h3,
      .portfolio-item:hover .portfolio-overlay p {
        transform: translateY(0);
        opacity: 1;
      }

      /* Testimonials */
      .testimonials {
        padding: 100px 0;
        background-color: white;
      }

      .testimonial-container {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
      }

      .testimonial {
        background: var(--light);
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 1s ease, transform 1s ease;
      }

      .testimonial.visible {
        opacity: 1;
        transform: scale(1);
      }

      .client-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin: 0 auto 20px;
        overflow: hidden;
        border: 3px solid var(--primary);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        animation: floatImage 6s ease-in-out infinite;
      }

      .client-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .testimonial p {
        font-style: italic;
        color: var(--gray);
        margin-bottom: 20px;
        font-size: clamp(1rem, 1.5vw, 1.1rem);
        position: relative;
      }

      .testimonial p::before,
      .testimonial p::after {
        content: '"';
        font-size: 40px;
        color: var(--primary);
        opacity: 0.3;
        position: absolute;
      }

      .testimonial p::before {
        top: -20px;
        left: -15px;
      }

      .testimonial p::after {
        bottom: -40px;
        right: -15px;
      }

      .client-info h4 {
        color: var(--dark);
        margin-bottom: 5px;
        font-size: clamp(1.1rem, 1.5vw, 1.3rem);
      }

      .client-info p {
        color: var(--primary);
        font-size: clamp(0.8rem, 1.5vw, 0.9rem);
        font-style: normal;
      }

      /* Contact Section */
      .contact {
        padding: 100px 0;
        background: linear-gradient(
          135deg,
          rgba(37, 99, 235, 0.1) 0%,
          rgba(249, 115, 22, 0.05) 100%
        );
      }

      .contact-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
      }

      .contact-info {
        display: flex;
        flex-direction: column;
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 1s ease, transform 1s ease;
      }

      .contact-info.visible {
        opacity: 1;
        transform: translateX(0);
      }

      .contact-info h3 {
        font-size: clamp(1.5rem, 2vw, 1.8rem);
        margin-bottom: 20px;
        color: var(--dark);
      }

      .contact-info p {
        color: var(--gray);
        margin-bottom: 30px;
        font-size: clamp(0.9rem, 1.5vw, 1rem);
      }

      .contact-detail {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        transition: var(--transition);
      }

      .contact-detail:hover {
        transform: translateX(10px);
      }

      .contact-icon {
        width: 50px;
        height: 50px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-right: 15px;
        transition: var(--transition);
        flex-shrink: 0;
      }

      .contact-detail:hover .contact-icon {
        background: var(--accent);
        transform: rotate(15deg);
      }

      .contact-form {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 1s ease, transform 1s ease;
        transition-delay: 0.3s;
      }

      .contact-form.visible {
        opacity: 1;
        transform: translateX(0);
      }

      .form-group {
        margin-bottom: 20px;
      }

      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--dark);
        font-size: clamp(0.9rem, 1.5vw, 1rem);
      }

      .form-group input,
      .form-group textarea,
      .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        transition: var(--transition);
      }

      .form-group input:focus,
      .form-group textarea:focus,
      .form-group select:focus {
        border-color: var(--primary);
        outline: none;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
      }

      /* Footer */
      footer {
        background: var(--dark);
        color: white;
        padding: 60px 0 20px;
      }

      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
      }

      .footer-col {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }

      .footer-col.visible {
        opacity: 1;
        transform: translateY(0);
        animation: floatCard 6s ease-in-out infinite;
      }

      .footer-col h4 {
        font-size: clamp(1.1rem, 1.5vw, 1.3rem);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-col h4::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background: var(--primary);
      }

      .footer-col p {
        color: #b3b3b3;
        margin-bottom: 20px;
        font-size: clamp(0.85rem, 1.5vw, 0.95rem);
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: #b3b3b3;
        text-decoration: none;
        transition: var(--transition);
        font-size: clamp(0.85rem, 1.5vw, 0.95rem);
      }

      .footer-links a:hover {
        color: var(--primary);
        padding-left: 5px;
      }

      .social-links {
        display: flex;
        gap: 12px;
        margin-top: 20px;
      }

      .social-links a {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: var(--transition);
        font-size: 16px;
      }

      .social-links a:hover {
        background: var(--primary);
        transform: translateY(-5px);
      }

      .footer-form {
        display: flex;
        margin-top: 15px;
      }

      .footer-form input {
        flex: 1;
        padding: 10px 15px;
        border: none;
        border-radius: 30px 0 0 30px;
        outline: none;
        font-size: clamp(0.85rem, 1.5vw, 0.95rem);
      }

      .footer-form button {
        background: var(--primary);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 0 30px 30px 0;
        cursor: pointer;
        transition: var(--transition);
        font-size: clamp(0.85rem, 1.5vw, 0.95rem);
      }

      .footer-form button:hover {
        background: var(--secondary);
      }

      .copyright {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #b3b3b3;
        font-size: clamp(0.8rem, 1.5vw, 0.9rem);
      }

      /* Scroll to Top Button */
      .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }

      .scroll-top.show {
        opacity: 1;
        visibility: visible;
      }

      .scroll-top:hover {
        background: var(--secondary);
        transform: translateY(-5px);
      }

      /* SEO Content (Hidden but crawlable) */
      .seo-content {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        overflow: hidden;
      }

      /* Responsive Design */
      @media (max-width: 1100px) {
        .hero-text {
          padding-right: 30px;
        }

        .nav-links li {
          margin-left: 20px;
        }
      }

      @media (max-width: 992px) {
        .hero-content {
          flex-direction: column;
          text-align: center;
        }

        .hero-text {
          padding-right: 0;
          margin-bottom: 50px;
          text-align: center;
        }

        .hero-buttons {
          justify-content: center;
        }

        .typing-container {
          justify-content: center;
        }
      }

      @media (max-width: 768px) {
        .menu-toggle {
          display: block;
        }

        .nav-links {
          position: fixed;
          top: 0;
          left: -100%;
          width: 80%;
          height: 100vh;
          background: white;
          flex-direction: column;
          align-items: center;
          padding-top: 100px;
          transition: var(--transition);
          z-index: 100;
          box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .nav-links.active {
          left: 0;
        }

        .nav-links li {
          margin: 15px 0;
        }

        .navbar .btn {
          display: none;
        }

        .hero {
          padding: 130px 0 80px;
        }

        .service-card,
        .portfolio-item {
          opacity: 1;
          transform: translateY(0);
        }

        .portfolio-item {
          height: 220px;
        }
      }

      @media (max-width: 576px) {
        .hero {
          padding: 120px 0 60px;
        }

        .hero-text h1 {
          font-size: 2rem;
        }

        .hero-buttons {
          flex-direction: column;
        }

        .btn {
          width: 100%;
          text-align: center;
        }

        .filter-btn {
          padding: 8px 15px;
        }

        .contact-container {
          gap: 30px;
        }

        .footer-form {
          flex-direction: column;
        }

        .footer-form input {
          border-radius: 30px;
          margin-bottom: 10px;
        }

        .footer-form button {
          border-radius: 30px;
          width: 100%;
        }

        .testimonial {
          padding: 20px;
        }

        .contact-form {
          padding: 20px;
        }
      }

      @media (max-width: 480px) {
        .logo {
          font-size: 24px;
        }

        .hero-text h1 {
          font-size: 1.8rem;
        }

        .section-title h2 {
          font-size: 1.8rem;
        }

        .section-title p {
          font-size: 1rem;
        }

        .services-grid {
          grid-template-columns: 1fr;
        }

        .portfolio-grid {
          grid-template-columns: 1fr;
        }

        .typing-container {
          flex-direction: column;
          align-items: center;
        }

        .static-text {
          margin-right: 0;
          margin-bottom: 5px;
        }
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }
