@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton+SC&family=Bowlby+One+SC&family=Protest+Guerrilla&family=Sigmar&display=swap');* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
 font-family: "DM Serif Text", serif;
       background: #000;
            color: rgba(255, 255, 255, 1);
            overflow-x: hidden;
        }
        h1, h2, h3 {
font-family: "Bowlby One SC", sans-serif;;
  font-weight: 400 !important;
  font-style: normal;    
        }
        nav {
            position: fixed;
            top: 0;
            right: 0;
            padding: 30px 50px;
            display: flex;
            gap: 40px;
            z-index: 1000;
            font-size: 14px;
            letter-spacing: 1px;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            transition: opacity 0.3s;
            position: relative;
            z-index: 1001;
        }
        nav a:hover {
            opacity: 0.7;
        }
        .section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 0 80px;
            overflow: hidden;
        }
        .section-content-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 40px;
            min-height: auto;
        }
        #hero-section {
            justify-content: space-between;
            position: relative;
            min-height: 100vh;
        }
        #videoBackground {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 1;
            z-index: 0;
            pointer-events: none;
        }
        #hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at top left, hsla(228, 61%, 26%, 0.36) 0%, rgba(13, 27, 66, 0.52) 40%, hsla(0, 0%, 0%, 0.47) 100%);
            z-index: 1;
        }
        #about-section {
            justify-content: space-between;
            position: relative;
            transform-origin: center center;
            flex-direction: row;
            min-height: 90vh;
            padding-top: 30px;
            padding-bottom: 80px;
        }
        #about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at bottom right, hsla(228, 61%, 26%, 0.36) 0%, rgba(13, 27, 66, 0.52) 40%, hsla(0, 0%, 0%, 0.47) 100%);
            z-index: 1;
        }
        #services-section {
            justify-content: center;
            background: #000;
            position: relative;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            padding-top: 100px;
            padding-bottom: 100px;
            overflow: hidden;
            z-index: 50;
        }
        #services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, hsla(228, 61%, 26%, 0.2) 0%, rgba(13, 27, 66, 0.3) 40%, hsla(0, 0%, 0%, 0.5) 100%);
            z-index: 1;
        }
        .text-content {
            max-width: 700px;
            z-index: 10;
            position: relative;
            flex: 1;
        }
        #about-section .text-content {
            margin-top: 0;
        }
        .services-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 100%;
            width: 100%;
            z-index: 10;
        }
        .text-content h1 {
            font-size: 52px;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
            color: transparent;
            -webkit-text-stroke: 2px #fff;
            text-stroke: 2px #fff;
        }
        #hero-section .text-content h1 {
            -webkit-text-stroke: 3px #fff;
            text-stroke: 3px #fff;
            font-size: 72px;
            font-weight: 900;
        }
        #about-section .text-content h1 {
            margin-top: 0;
            margin-bottom: 30px;
            font-size: 60px;
            font-weight: 900;
        }
        #services-section .text-content h1 {
            font-size: 60px;
            font-weight: 900;
            margin-bottom: 60px;
            text-align: center;
            width: 100%;
        }
        /* Hero section image container */
        .hero-image-container {
            width: 280px;
            position: relative;
            z-index: 10;
            overflow: hidden;
            box-shadow: 0 30px 80px hsla(0, 0%, 100%, 1.00), 0 0 40px rgba(255, 255, 255, 1);
            transition: transform 0.5s ease;
            perspective: 1000px;
            transform-style: preserve-3d;
            margin-bottom: 40px;
        }
        /* About section image container - REDUCED SIZE */
        .about-image-container {
            width: 450px !important;
            height: 450px !important;
            position: relative;
            z-index: 10;
            overflow: hidden;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
        }
        
        /* Desktop 3D Carousel */
        .carousel-container {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 80px;
            perspective: 1200px;
            z-index: 100;
        }
        
        .carousel-track {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .service-card {
            position: absolute;
            width: 400px;
            height: 400px !important;
            top: 50%;
            left: 50%;
            transform-style: preserve-3d;
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow: hidden;
            cursor: pointer;
            transform-origin: center center;
            will-change: transform, width, opacity, z-index;
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        }
        
        .service-card.active {
            width: 600px;
            height: 600px;
            transform: translate(-50%, -50%) translateZ(0px) scale(1.1);
            z-index: 100;
            opacity: 1;
            box-shadow: 0 40px 80px rgba(255, 255, 255, 0.3), 
                        0 0 40px rgba(66, 133, 244, 0.7),
                        0 0 80px rgba(66, 133, 244, 0.4);
        }
        
        .service-card.prev {
            width: 350px;
            height: 450px;
            transform: translate(-50%, -50%) translateX(-400px) translateZ(-200px) rotateY(15deg) scale(0.85);
            z-index: 80;
            opacity: 0.8;
            box-shadow: -30px 30px 80px rgba(0, 0, 0, 0.6);
        }
        
        .service-card.next {
            width: 350px;
            height: 450px;
            transform: translate(-50%, -50%) translateX(400px) translateZ(-200px) rotateY(-15deg) scale(0.85);
            z-index: 80;
            opacity: 0.8;
            box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.6);
        }
        
        .service-card.far-left {
            width: 300px;
            height: 400px;
            transform: translate(-50%, -50%) translateX(-700px) translateZ(-400px) rotateY(25deg) scale(0.7);
            z-index: 60;
            opacity: 0.6;
            box-shadow: -40px 30px 100px rgba(0, 0, 0, 0.8);
        }
        
        .service-card.far-right {
            width: 300px;
            height: 400px;
            transform: translate(-50%, -50%) translateX(700px) translateZ(-400px) rotateY(-25deg) scale(0.7);
            z-index: 60;
            opacity: 0.6;
            box-shadow: 40px 30px 100px rgba(0, 0, 0, 0.8);
        }
        
        .service-card.hidden-left {
            width: 250px;
            height: 350px;
            transform: translate(-50%, -50%) translateX(-900px) translateZ(-600px) rotateY(35deg) scale(0.6);
            z-index: 40;
            opacity: 0.3;
            box-shadow: -50px 30px 120px rgba(0, 0, 0, 0.9);
        }
        
        .service-card.hidden-right {
            width: 250px;
            height: 350px;
            transform: translate(-50%, -50%) translateX(900px) translateZ(-600px) rotateY(-35deg) scale(0.6);
            z-index: 40;
            opacity: 0.3;
            box-shadow: 50px 30px 120px rgba(0, 0, 0, 0.9);
        }
        
        .card-video {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
            padding: 40px 30px 25px;
            color: white;
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform: translateZ(20px);
        }
        
        .active .card-overlay {
            padding: 50px 35px 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.8) 50%, transparent 100%);
        }
        
        .card-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .active .card-title {
            font-size: 36px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }
        
        .card-description {
            font-size: 16px;
            opacity: 0.9;
            line-height: 1.6;
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .active .card-description {
            font-size: 18px;
            opacity: 1;
        }
        
        /* Mobile Swiper Slider */
        .mobile-swiper-container {
            display: none;
            width: 100%;
            height: 500px;
            position: relative;
            z-index: 100;
        }
        
        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .mobile-service-card {
            width: 85%;
            max-width: 400px;
            height: 400px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
        }
        
        .mobile-card-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .mobile-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
            padding: 30px 20px 20px;
            color: white;
        }
        
        .mobile-card-title {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        
        .mobile-card-description {
            font-size: 16px;
            opacity: 0.9;
            line-height: 1.5;
        }
        
        /* Swiper Navigation */
        .swiper-button-next,
        .swiper-button-prev {
            color: white !important;
            background: rgba(255, 255, 255, 0.1);
            width: 50px !important;
            height: 50px !important;
            border-radius: 50%;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px !important;
        }
        
        .swiper-pagination-bullet {
            background: white !important;
            opacity: 0.5;
            width: 10px !important;
            height: 10px !important;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
            background: #4285F4 !important;
        }
        
        /* Carousel navigation - SIDE BUTTONS - FIXED VERSION */
        .carousel-side-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 32px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            backdrop-filter: blur(10px);
            transform-style: preserve-3d;
            z-index: 1000;
            pointer-events: auto;
        }
        
        .carousel-side-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.8);
            transform: translateY(-50%) translateZ(20px) scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }
        
        .carousel-side-btn:active {
            transform: translateY(-50%) translateZ(10px) scale(0.95);
        }
        
        #prevBtnSide {
            left: 50px;
        }
        
        #nextBtnSide {
            right: 50px;
        }
        
        /* Remove dots navigation */
        .carousel-dots {
            display: none;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px) translateZ(-50px); }
            to { opacity: 1; transform: translateY(0) translateZ(0); }
        }
        
        @keyframes cardAppear {
            from { 
                transform: translate(-50%, -50%) translateZ(-800px) rotateY(0deg) scale(0.5);
                opacity: 0;
                width: 200px;
                height: 300px;
            }
            to { 
                transform: translate(-50%, -50%) translateZ(0px) scale(1.1);
                opacity: 1;
                width: 600px;
                height: 600px;
            }
        }
        
        .hero-image-placeholder,
        .about-image-placeholder {
            width: 100%;
            height: 100%;
            transition: transform 0.3s ease-out, box-shadow 0.3s ease;
            transform-style: preserve-3d;
            will-change: transform;
            border-radius: inherit;
            overflow: hidden;
            position: relative;
        }
        .hero-image-container:hover,
        .about-image-container:hover {
            transform: scale(1.02);
        }
        .hero-image-container img,
        .about-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit;
        }
        .text-content .tagline {
            padding-top: 20px;
            font-size: 22px;
            font-style: italic;
            font-weight: 700;
            opacity: 0.9;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        .text-content p {
            font-size: 18px;
            line-height: 1.6;
            opacity: 0.85;
            margin-bottom: 10px;
        }
        #hero-section .text-content p {
            font-weight: 500;
        }
        #about-section .text-content p {
            font-size: 18px;
            line-height: 1.7;
            opacity: 0.9;
            background: rgba(0, 0, 0, 0.25);
            padding: 20px;
            border-radius: 10px;
            border-left: 3px solid #4285F4;
            margin-bottom: 15px;
            backdrop-filter: blur(8px);
        }
        #about-section .text-content p:nth-child(3) {
            font-style: italic;
            font-size: 20px;
            color: #fff;
            text-align: center;
            font-weight: 600;
            background: linear-gradient(135deg, rgba(66, 133, 244, 0.15), rgba(0, 0, 0, 0.3));
            padding: 22px;
            border-left: 3px solid #EA4335;
        }
        .company-link {
            font-style: italic;
            text-decoration: underline;
            color: #fff;
            transition: opacity 0.3s;
        }
        .company-link:hover {
            opacity: 0.7;
        }
        .cta-button {
            display: inline-block;
            margin-top: 25px;
            padding: 14px 35px;
            background: transparent;
            border: 1px solid #fff;
            color: #fff;
            text-decoration: none;
            letter-spacing: 2px;
            font-size: 12px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #fff;
            transition: left 0.3s ease;
            z-index: -1;
        }
        .cta-button:hover::before {
            left: 0;
        }
        .cta-button:hover {
            color: #000;
        }
        #about-section .cta-button {
            background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 100%);
            border: none;
            font-weight: 600;
            padding: 15px 40px;
            font-size: 13px;
            letter-spacing: 2px;
            border-radius: 6px;
        }
        #about-section .cta-button::before {
            background: linear-gradient(135deg, #FBBC05 0%, #EA4335 50%, #4285F4 100%);
        }
        #particlesCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        #waterCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            pointer-events: none;
        }
        .section-label {
            position: absolute;
            top: 40px;
            left: 80px;
            font-size: 11px;
            letter-spacing: 3px;
            opacity: 0.5;
            z-index: 10;
        }
        /* MODIFIED: Scrolling container now full width */
        .scrolling-container {
            position: absolute;
            left: 0;
            right: 0;
            width: 100vw;
            margin-top: 15px;
            opacity: 1;
            overflow: hidden;
            transform: translateX(calc(-50vw + 50%));
            z-index:99 !important;
        }
        .scrolling-text {
            white-space: nowrap;
            display: inline-block;
            animation: scroll-left 20s linear infinite;
            font-size: 72px;
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: -2px;
            color: transparent;
            -webkit-text-stroke: 2px #fff;
            text-stroke: 2px #fff;
        }
        @keyframes scroll-left {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-100%);
            }
        }
        /* Glowing elements for about section */
        .glow-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.3;
            z-index: 0;
        }
        .glow-1 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, #4285F4 0%, transparent 70%);
            top: 10%;
            right: 15%;
        }
        .glow-2 {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, #EA4335 0%, transparent 70%);
            bottom: 20%;
            left: 10%;
        }
        /* Floating animation for about section image */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotateX(3deg) rotateY(-1deg);
            }
            50% {
                transform: translateY(-15px) rotateX(5deg) rotateY(1deg);
            }
        }
        #about-section .about-image-placeholder {
            animation: float 6s ease-in-out infinite;
            transform: rotateX(3deg) rotateY(-1deg);
        }
        
        /* RESPONSIVE STYLES */
        
        /* Large devices (desktops, less than 1400px) */
        @media (max-width: 1400px) {
            .section {
                padding: 0 50px;
            }
            .about-image-container {
                width: 400px !important;
                height: 400px !important;
            }
            .service-card.active {
                width: 550px;
                height: 550px;
            }
            .service-card.prev,
            .service-card.next {
                width: 320px;
                height: 420px;
                transform: translate(-50%, -50%) translateX(-350px) translateZ(-150px) rotateY(15deg) scale(0.85);
            }
            .service-card.next {
                transform: translate(-50%, -50%) translateX(350px) translateZ(-150px) rotateY(-15deg) scale(0.85);
            }
            .service-card.far-left,
            .service-card.far-right {
                width: 280px;
                height: 380px;
                transform: translate(-50%, -50%) translateX(-600px) translateZ(-300px) rotateY(25deg) scale(0.7);
            }
            .service-card.far-right {
                transform: translate(-50%, -50%) translateX(600px) translateZ(-300px) rotateY(-25deg) scale(0.7);
            }
            .carousel-side-btn {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
            #prevBtnSide {
                left: 30px;
            }
            #nextBtnSide {
                right: 30px;
            }
        }
        
        /* Medium devices (tablets, less than 1200px) */
        @media (max-width: 1200px) {
            .section {
                padding: 0 40px;
            }
            .hero-image-container {
                width: 280px;
            }
            .about-image-container {
                width: 350px !important;
                height: 350px !important;
            }
            .service-card.active {
                width: 500px;
                height: 500px;
            }
            .service-card {
                width: 350px;
                height: 450px;
            }
            .service-card.prev,
            .service-card.next {
                width: 300px;
                height: 400px;
                transform: translate(-50%, -50%) translateX(-300px) translateZ(-100px) rotateY(15deg) scale(0.85);
            }
            .carousel-side-btn {
                width: 65px;
                height: 65px;
                font-size: 26px;
            }
            .text-content h1 {
                font-size: 60px;
            }
            #hero-section .text-content h1 {
                font-size: 60px;
            }
            #about-section .text-content h1 {
                font-size: 52px;
            }
            #services-section .text-content h1 {
                font-size: 50px;
            }
        }
        
        /* Small devices (landscape phones, less than 992px) */
        @media (max-width: 992px) {
            .section {
                padding: 0 30px;
            }
            .section-content-wrapper {
                flex-direction: column !important;
                gap: 50px;
            }
            .about-image-container {
                width: 400px !important;
                height: 400px !important;
                margin: 0 auto;
            }
            .hero-image-container {
                width: 300px;
                margin: 0 auto 30px;
            }
            .text-content {
                text-align: center;
            }
            #about-section .text-content {
                text-align: center;
            }
            .service-card.active {
                width: 450px;
                height: 450px;
            }
            .carousel-container {
                height: 600px;
            }
            .carousel-side-btn {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            #prevBtnSide {
                left: 20px;
            }
            #nextBtnSide {
                right: 20px;
            }
            .text-content h1 {
                font-size: 52px;
            }
            #hero-section .text-content h1 {
                font-size: 52px;
            }
            #about-section .text-content h1 {
                font-size: 48px;
            }
            #services-section .text-content h1 {
                font-size: 48px;
            }
        }
        
        /* Extra small devices (phones, less than 768px) */
        @media (max-width: 768px) {
            /* HIDE DESKTOP CAROUSEL, SHOW MOBILE SWIPER */
            .carousel-container {
                display: none;
            }
            .mobile-swiper-container {
                display: block;
                height: 450px;
                margin-bottom: 50px;
            }
            .mobile-service-card {
                height: 380px;
            }
            
            .section {
                padding: 0 20px;
                min-height: auto;
                padding-top: 100px;
                padding-bottom: 80px;
            }
            #hero-section {
                padding-top: 120px;
                min-height: 100vh;
            }
            #about-section {
                min-height: auto;
                padding-top: 80px;
                padding-bottom: 60px;
            }
            #services-section {
                padding-top: 80px;
                padding-bottom: 60px;
                min-height: auto;
            }
            nav {
                padding: 20px;
                flex-direction: row;
                justify-content: center;
                gap: 25px;
                width: 100%;
                background: rgba(0, 0, 0, 0.7);
                backdrop-filter: blur(10px);
            }
            nav a {
                font-size: 13px;
            }
            .about-image-container {
                width: 300px !important;
                height: 300px !important;
            }
            .hero-image-container {
                width: 250px;
            }
            .card-title {
                font-size: 22px;
            }
            .active .card-title {
                font-size: 28px;
            }
            .text-content h1 {
                font-size: 42px;
            }
            #hero-section .text-content h1 {
                font-size: 42px;
            }
            #about-section .text-content h1 {
                font-size: 40px;
            }
            #services-section .text-content h1 {
                font-size: 40px;
                margin-bottom: 40px;
            }
            .text-content .tagline {
                font-size: 18px;
            }
            .text-content p {
                font-size: 16px;
            }
            #about-section .text-content p {
                font-size: 16px;
                padding: 15px;
            }
            #about-section .text-content p:nth-child(3) {
                font-size: 17px;
                padding: 18px;
            }
            .scrolling-container {
                display: none;
            }
            .section-label {
                left: 20px;
                top: 30px;
            }
            .cta-button {
                padding: 12px 25px;
                font-size: 11px;
            }
            #about-section .cta-button {
                padding: 13px 30px;
                font-size: 12px;
            }
            
            /* MOBILE: Simple downward scrolling - Remove all scaling effects */
            #spacer, #spacer2 {
                display: none !important;
                height: 0 !important;
            }
            
            #hero-section,
            #about-section,
            #services-section {
                position: relative !important;
                transform: none !important;
                width: 100% !important;
                height: auto !important;
                left: auto !important;
                top: auto !important;
                display: flex !important;
                min-height: auto !important;
            }
            
            #hero-section.shrinking,
            #about-section.shrinking {
                transform: none !important;
            }
            
            #services-section {
                transform: none !important;
            }
        }
        
        /* Extra extra small devices (small phones, less than 576px) */
        @media (max-width: 576px) {
            .section {
                padding: 0 15px;
                padding-top: 80px;
                padding-bottom: 60px;
            }
            #hero-section {
                padding-top: 100px;
            }
            .about-image-container {
                width: 250px !important;
                height: 250px !important;
            }
            .hero-image-container {
                width: 200px;
            }
            .mobile-swiper-container {
                height: 400px;
                margin-bottom: 40px;
            }
            .mobile-service-card {
                height: 350px;
                width: 90%;
            }
            .mobile-card-title {
                font-size: 22px;
            }
            .mobile-card-description {
                font-size: 15px;
            }
            .card-title {
                font-size: 18px;
            }
            .active .card-title {
                font-size: 22px;
            }
            .card-description {
                font-size: 14px;
            }
            .text-content h1 {
                font-size: 36px;
            }
            #hero-section .text-content h1 {
                font-size: 36px;
            }
            #about-section .text-content h1 {
                font-size: 32px;
            }
            #services-section .text-content h1 {
                font-size: 32px;
                margin-bottom: 30px;
            }
            .text-content .tagline {
                font-size: 16px;
            }
            .text-content p {
                font-size: 15px;
            }
            #about-section .text-content p {
                font-size: 15px;
                padding: 12px;
            }
            #about-section .text-content p:nth-child(3) {
                font-size: 16px;
                padding: 15px;
            }
            nav {
                padding: 15px;
                gap: 20px;
            }
            nav a {
                font-size: 12px;
            }
            .section-label {
                left: 15px;
                top: 25px;
                font-size: 10px;
            }
        }
        
        /* Very small devices (iphone SE etc) */
        @media (max-width: 375px) {
            .about-image-container {
                width: 220px !important;
                height: 220px !important;
            }
            .hero-image-container {
                width: 180px;
            }
            .mobile-swiper-container {
                height: 350px;
            }
            .mobile-service-card {
                height: 320px;
            }
            .text-content h1 {
                font-size: 32px;
            }
            #hero-section .text-content h1 {
                font-size: 32px;
            }
            #about-section .text-content h1 {
                font-size: 28px;
            }
            #services-section .text-content h1 {
                font-size: 28px;
            }
        }