/* CSS Reset & Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

*:focus {
  outline: none;
}

:root {
    --gradient-start: #e44b4e;
    --gradient-end: #4c28ff;
    --text-dark: #161616;
    --text-light: #878787;
    --bg-white: #ffffff;
    --bg-dark: #070707;
}
body {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Enable smooth scrolling behavior */

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}


/* Allow native scroll inside elements */

[data-lenis-prevent] {
    overscroll-behavior: contain;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
}


/* Prevent native scroll conflicts */

.lenis.lenis-stopped {
    overflow: hidden;
}


/* Improve performance */

.lenis.lenis-smooth iframe {
    pointer-events: none;
}


/* Optional: smooth scroll container */

[data-lenis-scroll] {
    will-change: transform;
}


/* Optional: better body defaults */

body {
    overflow-x: hidden;
}

html.lenis body {
    height: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Google Sans Flex", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}


/* Gradient Text Utility */

.gradient-text {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.outer {
    max-width: 90%;
    margin: 0 auto;
}


/* Header */

.header {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    column-gap: 0;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    max-width: 100%;
    margin: 0 auto;
    transition: all 0.3s;
}


/* when scrolled */

.header.header-onscroll {
    padding: 0rem 5%;
    box-shadow: 0 0 10px 10px #0000000d;
}

.header .logo img {
    width: 120px;
    transform: scale(1);
    transform-origin: left center;
    transition: transform 0.4s ease;
}

.header.header-onscroll .logo img {
    transform: scale(0.600);
}

.logo {
    display: flex;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-info a:hover {
    background: linear-gradient( 90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-area {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: flex-end;
}

.hamburger {
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 9999999;
}

.hamburger span {
    width: 40px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.hamburger span:nth-child(2) {
    width: 30px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.hamburger:hover span:nth-child(2) {
    width: 40px;
}

.hamburger:hover span:nth-child(1) {
    transform: translateX(-5px);
}

.hamburger:hover span:nth-child(2) {
    transform: translateX(5px);
}

/* ACTIVE STATE → X */

.menu-close {
    position: absolute;
    top: 55px;
    right: 55px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.35s ease;
}


/* rotate + slight zoom */

.menu-close:hover {
    transform: rotate(90deg) scale(1.1);
}


/* Lines */

.menu-close span {
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
    top: 50%;
    left: 0;
    transform-origin: center;
    transition: all 0.3s ease;
}

.menu-close span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-close span:nth-child(2) {
    transform: rotate(-45deg);
}


/* Prevent scroll when menu open */

.no-scroll {
    overflow: hidden;
}


/* Fullscreen menu */

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 9999;
    overflow-y: scroll;
}


/* Active menu */

.menu.active {
    transform: translateY(0);
}


/* Hero Section */

.hero {
    display: grid;
    grid-template-columns: 1fr;
    padding: 5rem 0 2rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: flex-end;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 400;
    max-width: 50rem;
}

.hero-text p {
    font-size: 1.5rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 1.125rem;
    text-decoration: none;
    color: var(--text-dark);
    opacity: 0.8;
    transition: all 0.3s;
}

.cta-button:hover {
    opacity: 1;
}

.cta-button .arrow {
    transition: transform 0.3s;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.hero-badge img {
    max-width: 120px;
}


/* Main Image Section */

.main-image {
    position: relative;
    max-width: 100%;
    margin: 0 auto 2rem auto;
    padding: 0;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 120vh;
    display: block;
    object-fit: cover;
    max-height: 1093px;
}

.side-text {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 1.375rem;
    color: var(--text-dark);
    opacity: 0.4;
    white-space: nowrap;
}


/* Tagline Section */

.tagline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0;
}

.tagline h2 {
    font-size: clamp(2rem, 5vw, 4.875rem);
    line-height: 1.1;
    font-weight: 400;
    max-width: 45rem;
}

.tagline-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #cacaca;
}

.tagline-cta p {
    font-size: 1.6rem;
    opacity: 0.8;
}


/* CTA base */

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cta-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

a.cta-link:hover {
    background: linear-gradient( 90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}


/* text */

.cta-link span {
    display: inline-block;
    transition: transform 0.3s ease;
}


/* underline container */

.cta-link .underline {
    width: 68px;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}


/* animated gradient line */

.cta-link .underline::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}


/* hover effects */

.cta-link:hover span {
    transform: translateX(6px);
}

.cta-link:hover .underline::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* Services Grid */

.services {
    padding: 4rem 0 2rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));
    gap: 0;
    max-width: 100%;
}

.service-item {
    position: relative;
}

.service-item:hover .dot {
    visibility: visible;
    opacity: 1;
    transform: scale(1) translateX(-10px);
}

.service-item:hover .service-label {
    transform: scale(1) translateX(10px);
}

.service-item img {
    width: 100%;
    height: 503px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    z-index: 2;
    position: relative;
}

.service-item:hover img {
    transform: scale(1.05);
    z-index: 3;
}

.service-label {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    transform: scale(1) translateX(-16px);
}

.service-label h3 {
    font-size: 1rem;
    font-weight: 400;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
       background: url("../img/cameraicon.svg") center/contain no-repeat;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.5) translateX(-8px);
    transition: all 0.35s ease;
}

.service-head {
    display: flex;
    justify-content: space-between;
    padding: 0 0 5rem 0;
}

.service-head-tag {
    max-width: 220px;
    text-align: right;
}

.service-head-tag p {
    color: var(--text-light);
    padding: 10px 0 0 0;
    font-size:1.1rem;
}

.service-head h2 {
    font-size: clamp(2rem, 5vw, 4.875rem);
    line-height: 1.1;
    font-weight: 400;
    max-width: 57rem;
}


/* Experience Section */

.experience {
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.infinity-symbol img {
    width: 30%;
    display: block;
    max-width: 90%;
    margin: 0 auto;
}

.experience h2 {
    font-size: clamp(2rem, 5vw, 4.875rem);
    line-height: 1;
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.experience-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 4rem;
    margin: 3rem auto 0 auto;
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.experience-col p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: left;
}


/* Portfolio Image */

.portfolio-image {
    position: relative;
    max-width: 100%;
    padding: 0 0 4rem 0;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s;
}

.triangle {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 25px solid var(--bg-dark);
    /* color */
    opacity: 1;
    transform: translateX(2px);
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}


/* CTA Section */

.cta-section {
    background: var(--bg-dark);
    padding: 5rem 5% 1rem 5%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.menu .cta-section h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.875rem);
    margin: 0;
}

.menu .contact-item a {
    font-size: 1.5rem;
}

.menu .contact-item .icon img {
    width: 30px;
}

.menu .footer-grid {
    border: 0;
    padding: 0;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 5vw, 4.875rem);
    line-height: 1.1;
    margin-bottom: 3rem;
    font-weight: 400;
    color: #a1a1a1;
    max-width: 500px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0;
}

.contact-item-set {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item a {
    color: #fff;
    font-weight: 200;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    background: linear-gradient( 90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.contact-item .icon img {
    width: 40px;
    display: block
}

.contact-item p {
    font-size: 1.8rem;
    opacity: 0.8;
}

.follow-section {
    background: #000;
    color: #fff;
    padding: 0 0 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.follow-section p {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 0;
    margin: 0 0 0 20px;
}

.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}


/* hover effect */

.icon:hover {
    transform: translateY(-4px) scale(1.05);
}


/* Footer */

.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 5% 2rem;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    background: linear-gradient( 90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    align-content: space-between;
    gap: 10px;
    padding: 3rem 0;
}
.footer-bottom a {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity:0.5;
    text-decoration:none;
}

.footer-bottom p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom p:last-child {
    text-align: right;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.7;
}

.parallax-img {
    overflow: hidden;
    position: relative;
}

.parallax-img img {
    width: 100%;
    height: 120%;
    /* extra height for movement */
    object-fit: cover;
    transform: translateY(0);
    will-change: transform;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 100%;
    margin: auto;
    padding: 0 0 2rem 0;
}


/* IMAGE */

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* FULL WIDTH IMAGE */

.full_image {
    grid-column: span 2;
}


/* TEXT BLOCK */

.text {
    display: flex;
    align-items: center;
    padding: 20px;
    max-width: 430px;
    width: 90%;
    margin: 0 auto;
}

.text p {
    position: relative;
    padding-left: 50px;
    line-height: 1.5;
    font-size: 1.2rem;
    font-weight: 400;
}

.text p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 35px;
    height: 1px;
    background: #333;
}


/* IMAGE + TEXT FLOW */

.image_text img,
.text_image img {
    height: 100%;
}

.inner {
    padding: 0 0 4rem 0;
}


/* GRID */

.about-us .grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 3rem 0;
}


/* LEFT */

.about-us .label {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.about-us .title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 400;
}


/* GRADIENT TEXT */


/* RIGHT */

.about-us .right p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 440px;
    width: 90%;
    line-height:1.4;
}

.about-split {
    padding: 40px 0px;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: flex-end;
}


/* IMAGE */

.about-split .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}


/* RIGHT SIDE */

.about-split .content {
    position: absolute;
    right: 9rem;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    padding: 1rem;
    max-width: 460px;
    font-size: 1.2rem;
}


/* ICON */

.about-split .icon {
    margin-bottom: 20px;
    opacity: 0.7;
}

p {
    font-size: 1.2rem;
    line-height: 1.2;
}


/* TEXT */

.about-split .content p {
    font-size: 1.2;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

.link-line {
    position: relative;
    font-size: 1.5rem;
    color: #222;
    text-decoration: none;
    display: table;
    padding: 2rem 0 0 0;
    margin: 0 auto;
}


/* BASE BLACK LINE */

.link-line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #000;
}


/* GRADIENT LINE (HIDDEN INITIALLY) */

.link-line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #ff5f6d, #a044ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}


/* HOVER EFFECT */

.link-line:hover::after {
    transform: scaleX(1);
}

#contact {
    scroll-margin-top: 3rem;
}

#services {
    scroll-margin-top: 3rem;
}

#expertise {
    scroll-margin-top: 3rem;
}
.whatsapp-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 100px); /* hidden below */
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Show state */
.whatsapp-bar.show {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

/* Hover */
.whatsapp-bar:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}


/* RESPONSIVE */

@media (max-width: 1330px) {
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
    gap: 0;
    max-width: 100%;
   
}
    .service-item {
         padding: 0 0 1rem 0;
    }
}
@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr;
    }
    .about-split .content {
        position: relative;
        right: 0;
        bottom: 0;
        top: 0;
        display: flex;
        align-items: center;
        padding: 3rem 0 0 0;
        max-width: 460px;
        width: 100%;
        font-size: 1.2rem;
    }
    .about-split .content p {
        color: var(--text-light);
    }
    .about-split .inner {
        max-width: 100%;
    }
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .about-us .grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .about-split {
        padding: 30px;
        background: #121111;
    }
    .about-split .icon {
        display: none;
    }
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    .full_image {
        grid-column: span 1;
    }
    
}

@media (max-width: 1024px) {
    .menu .cta-section h2 {
        font-size: clamp(2rem, 2.5vw, 2.875rem);
        margin: 0 0 20px 0;
    }
    .cta-section h2 {
      
        max-width: 600px;
         margin: 0 0 20px 0;
    }
    .cta-section {
        flex-wrap: wrap;
    }
    .contact-details {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .header {
        grid-template-columns: auto 1fr auto;
    }
    .nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-badge {
        writing-mode: horizontal-tb;
        transform: none;
        padding: 2rem 0;
    }
    .tagline-cta {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
            padding: 1rem 0 5rem 0;
    }
    
    .footer-bottom p {
        font-size:12px;
    }
    .footer-bottom p:last-child {
        text-align: center;
    }
    .hero-badge,
    .service-head-tag {
        display: none;
    }
    .hero {
        padding: 1rem 0;
        min-height: inherit;
    }
    .main-image img {
        height: 650px;
    }
    .header {
        padding: 1.5rem 5%;
    }
    .infinity-symbol img {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .hero-badge,
    .service-head-tag {
        display: none;
    }
    .footer-col ul li {
        margin-bottom: 0.2rem;
    }
    .footer-col h4 {
        margin-bottom: 0;
    }
    .footer-col a {
        font-size: 1rem;
    }
    .hero {
        padding: 1rem 0;
        min-height: 200px;
    }
    .main-image img {
        height: 450px;
    }
    .header {
        padding: 1.5rem 5%;
    }
    .infinity-symbol img {
        width: 60%;
    }
    .hero {
        padding: 2rem 0%;
    }
    .subtitle {
        font-size: 1.25rem;
    }
    .tagline {
        padding: 1rem 0;
    }
    .services {
        padding: 3rem 0 1rem 0;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
        gap: 1rem;
    }
    .service-item img {
        height: 250px;
    }
    .experience {
        padding: 2rem 0;
    }
    .experience-content {
        grid-template-columns: 1fr;
    }
    .experience-col p {
        font-size: 1.25rem;
    }
    .cta-section {
        padding: 4rem 5% 2rem 5%;
        flex-wrap: wrap;
    }
    .contact-item-set {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    .contact-details {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .contact-item p {
        font-size: 1.5rem;
    }
    .footer {
        padding: 1rem 4% 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .logo img {
        max-width: 80px;
    }
    .service-head {
        flex-wrap: wrap;
        padding: 0 0 1rem 0;
    }
    .service-label h3 {
        font-size: 0.9rem;
    }
    .service-label {
        padding: 1rem 0 1rem 0;
    }
    .tagline-cta p {
        line-height: 1.1;
        font-size: 1.4rem;
    }
    .portfolio-image {
        margin: 2rem auto 1rem auto;
    }
    .play-button {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -40%);
        width: 85px;
        height: 85px;
    }
}


/* Smooth Animations */

@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}