* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --fluorescent-cyan: #38f2f1ff;
    --moonstone: #03bdd6ff;
    --robin-egg-blue: #00d4d8ff;
    --aero: #00b8dcff;
    --robin-egg-blue-2: #00c6dbff;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #f0f0f0;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    background-color: var(--robin-egg-blue);
}

body::-webkit-scrollbar {
    display: none;
}

h1, h2, h3 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}
button {
    align-items: center;
    background-image: linear-gradient(144deg, var(--fluorescent-cyan), var(--aero) 50%, var(--robin-egg-blue));
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #ffffff;
    display: flex;
    font-size: 18px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 100px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
}

button:active,
button:hover {
    outline: 0;
}

button span {
    background-color: var(--moonstone);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

button:hover span {
    background: none;
}

button:active {
    transform: scale(0.9);
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:focus-visible, button:focus-visible, input:focus, textarea:focus {
    outline: 2px solid var(--fluorescent-cyan);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(56, 242, 241, 0.3);
    border-radius: 4px;
}

.section-padding {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    position: relative;
}

.section-padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background-color: rgba(3, 189, 214, 0.3);
}

.scroll-target {
    scroll-margin-top: 80px;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("images/background.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15); 
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s ease-in-out;
}

.glass-nav {
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    width: 100%;
    border-bottom: 3px solid transparent;
    transition: background-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.glass-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 5%;
}

.glass-footer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: none;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    animation: fadeInSlideDown 0.3s ease-in-out;
}

.nav-links a {
    margin: 0 10px;
    padding: 5px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.nav-links.active a {
    text-align: center;
    padding: 1rem;
    width: 100%;
}

.hamburger-menu {
    background: none;
    border: 0;
    color: #f0f0f0;
    font-size: 2rem;
    cursor: pointer;
    display: none;
    padding: 0.5rem;
    margin: -0.5rem;
}

@keyframes fadeInSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-section {
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    flex: 1;
    transition: flex 0.9s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.7s ease-in-out;
    filter: grayscale(0.5) brightness(0.6);
}

.hero-panel:hover {
    flex: 2;
    filter: grayscale(0) brightness(1);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    z-index: 5;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    text-align: center;
    width: 90%;
    max-width: 600px;
    z-index: 10;
}

.hero-title-logo {
    font-family: "Inter", sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px var(--moonstone), 0 0 20px var(--moonstone), 0 0 40px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
}
.hero-tagline {
    font-family: "Inter", sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-content img {
    max-width: 100%;
    height: auto;
}

.hero-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo-section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 80vh;
    padding: 80px 0;
    animation: fadeInSlideUp 1s ease-out;
    }
    .logo-nav img{
        max-width: 30%;
        width: 100%;
    }
    .logo-section img{
        max-width: 80%;
        width: 100%;
        
    }
.hero-card p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 2rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 32px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
#about {
    border-top: 5px solid var(--fluorescent-cyan);
}
#about > h2{
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
}
.about-container {
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.about-container.visible {
    opacity: 1;
    transform: translateY(0);
}
.about-container p {
    line-height: 1.5;
    font-size: 1.25rem;
}
.service-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(-45deg, var(--fluorescent-cyan) 0%, var(--aero) 100%);
    z-index: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-item:hover {
    box-shadow: none;
    transform: translateY(0);
}

.service-item:hover::before {
    height: 100%;
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: #e8e8e8;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-item p {
    line-height: 1.5;
    font-size: 1.25rem;
}

.service-item h3 {
    font-weight: 700;
    font-size: 32px;
}
#services h2{
    font-size: 3rem;
    text-align: center;
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: space-evenly;
    gap: 20px;
    margin-top: 2rem;
}

.portfolio-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);    
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.8s ease-out, box-shadow 0.5s ease-in-out, opacity 0.8s ease-out;
}

.portfolio-item:hover {
    transform: scale(1.03) translateY(0);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.portfolio-item img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease-in-out, filter 0.6s ease-in-out;
}

.portfolio-item:hover img {
    transform: scale(1.1) translateY(0);
    filter: grayscale(0%) contrast(1);
}

.portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: rgba(240, 240, 240);
    padding: 170px 20px 20px;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    font-size: 1.7rem;
    background: linear-gradient(to top, rgba(0,0,0,1), transparent);
}

.portfolio-item:hover::after {
    opacity: 0;
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
}
#portfolio h2{
    font-size: 3rem;
    text-align: center;
}

.glass-footer {
    padding: 20px 5%;
    text-align: center;
    font-size: 0.9rem;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 25px;
    border: none;
    outline: none;
    background-color: rgba(0, 199, 231, 0.7);
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    min-width: 50px;
    height: 60px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    box-shadow: 0 0 0 0 rgba(3, 189, 214, 0.7);
}

#scrollToTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(3, 189, 214, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(3, 189, 214, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(3, 189, 214, 0);
    }
}

#scrollToTopBtn:hover {
    background-color: var(--aero);
}

.contact-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2rem;
    gap: 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contact-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-info {
    text-align: center;
}

.contact-info h2, .contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: rgba(240, 240, 240, 0.8);
}

.contact-info h3, .contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.social-links a {
    font-size: 2rem;
    color: rgba(240, 240, 240, 0.8);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--fluorescent-cyan);
    transform: scale(1.1) translateY(-2px);
}


.info-item i {
    font-size: 1.5rem;
    color: var(--fluorescent-cyan);
    width: 25px;
}

.contact-form-wrapper {
    width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 12px;
    color: rgba(240, 240, 240, 0.7);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group.required label::after {
    content: ' *';
    color: var(--fluorescent-cyan);
    font-weight: bold;
    margin-left: 2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 12px;
    border-radius: 6px;
    border: 2px solid transparent;
    background-color: rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:focus,
.form-group textarea:not(:placeholder-shown) {
    border-color: var(--moonstone);
}

.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: var(--moonstone);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--fluorescent-cyan);
    padding: 0 5px;
}

.form-group input:not(:placeholder-shown):valid,
.form-group textarea:not(:placeholder-shown):valid {
    border-color: #32c77d;
}

.form-group input:not(:placeholder-shown):invalid,
.form-group textarea:not(:placeholder-shown):invalid {
    border-color: #e53e3e;
}


.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 1rem;
}

.reset-btn span {
    background-color: rgba(255, 255, 255, 0.2);
}

.reset-btn:hover span {
    background-color: rgba(255, 255, 255, 0.4);
}

::placeholder {
    color: transparent;
    opacity: 1;
}

:-ms-input-placeholder {
    color: transparent;
}

::-ms-input-placeholder {
    color: transparent;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.card {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 2rem;
    width: 320px;
    flex-direction: column;
    border-radius: 1rem;
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card header {
    display: flex;
    flex-direction: column;
}

.title {
    font-size: 1.2rem;
    line-height: 2rem;
    font-weight: 700;
    color: white;
}

.price {
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 700;
    color: white;
}

.desc {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.625;
    color: white;
}

.lists {
    margin-bottom: 1.5rem;
    flex: 1 1 0%;
    color: var(--fluorescent-cyan);
}

.lists .list {
    margin-bottom: 0.5rem;
    display: flex;
    margin-left: 0.5rem;
}

.lists .list svg {
    height: 1.5rem;
    width: 1.5rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
    color: var(--fluorescent-cyan);
}

.action {
    border: none;
    outline: none;
    display: inline-block;
    border-radius: 0.5rem;
    background-color: var(--primary-color);
    padding: 0.75rem 1.25rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    background-image: none;
    box-shadow: none;
}

.action:hover {
    background-color:var(--robin-egg-blue);
}

@media (min-width: 768px) and (max-width: 1199px) {
    button{
        min-width: 140px;
    }
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        gap: 30px;
        align-items: center;
        margin-right: 30px;
    }

    .nav-links a {
        font-size: 1.25rem;
        padding: 5px;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: var(--fluorescent-cyan);
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .nav-links.active a {
        width: auto;
    }

    .nav-links a:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .nav-links a.active {
        color: var(--fluorescent-cyan);
        transform: scale(1.05);
    }

    .logo-nav img{
        max-width: 30%;
        width: 100%;
        height: auto;
    }
    .logo{
        margin-top: 40px;
        animation: fadeInSlideUp 1s ease-out;
    }
    .logo-section img{
        max-width: 30%;
        width: auto;
        padding: 0;
    }
    .logo-section{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    .hero-content {
        max-width: 800px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
    .hero-card h1 {
        opacity: 0;
        animation: fadeInSlideUp 1s ease-out 0.4s forwards;
    }
    
    .cta-group {
        flex-direction: row;
        justify-content: flex-start;
    }

    .services-grid, .portfolio-grid {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap:50px;
    }
    #services {
        max-width: 100%;
        width: 100%;
        padding: 60px 5%;
    }
    #about {
        max-width: 100%;
        width: 100%;
        padding: 60px 5%;
    }
    #services h2{
        font-size: 3.75rem;
        text-align: center;
        margin-bottom: 30px;
        font-weight: 900;
    
    }
    .services-grid {
        flex-wrap: wrap;
    }
    .service-item{
        flex-basis: calc((100% - 100px) / 3);
    }
    .service-item-full {
        flex-basis: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
    .portfolio-item {
        flex-basis: calc(25% - 14px);
    }
    .portfolio-item img{
        width: 100%;
        height: 400px;
    }
    #portfolio h2{
        text-align: center;
        font-size: 4rem;
        margin-bottom: 30px;
        font-weight: 900;
    }
    .contact-container {
        flex-direction: row;
        align-items: flex-start;
        padding: 3rem;
    }
    .contact-info {
        flex: 1;
        text-align: left;
        padding-right: 2rem;
    }
    .info-item {
        justify-content: flex-start;
    }
    .social-links {
        justify-content: flex-start;
        margin-top: 2rem;
    }
    .contact-form-wrapper {
        flex: 1.5;
    }
    .service-item h3{
        font-size: 1.25rem;
    }
    #portfolio{
        max-width: 100%;
        width: 100%;
    }
    .form-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    .section-title{
        text-align: center;
        font-size: 4rem;
        font-weight: 900;
    }
    #about > h2{
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
}
}
@media (min-width: 1200px) {
    button{
        min-width: 140px;
    }
    #about > h2{
        font-size: 4rem;
        font-weight: 900;
        text-align: center;
    }
    .about-container p {
        line-height: 1.5;
        font-size: 1.25rem;
        text-align: center;
    }
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        gap: 30px;
        align-items: center;
        margin-right: 30px;
    }

    .nav-links a {
        font-size: 1.25rem;
        padding: 5px;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: var(--fluorescent-cyan);
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .nav-links.active a {
        width: auto;
    }

    .nav-links a:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .nav-links a.active {
        color: var(--fluorescent-cyan);
        transform: scale(1.05);
    }

    .hamburger-menu {
        display: none;
    }
    .logo img{
        max-width: 30%;
        width: 100%;
        height: auto;
    }
    .logo{
        margin-top: 40px;
        animation: fadeInSlideUp 1s ease-out;
    }
    .logo-nav img{
        width: 12%;

    }
    .logo-section img{
        max-width: 30%;
        width: auto;
        padding: 0;
    }
    .logo-section{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    .hero-content {
        max-width: 800px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
    .hero-card h1 {
        opacity: 0;
        animation: fadeInSlideUp 1s ease-out 0.4s forwards;
    }
    
    .cta-group {
        flex-direction: row;
        justify-content: flex-start;
    }

    .services-grid, .portfolio-grid {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap:50px;
    }
    #services {
        max-width: 100%;
        width: 100%;
        padding: 60px 5%;
    }
    #about {
        max-width: 100%;
        width: 100%;
        padding: 60px 5%;
    }
    #services h2{
        font-size: 4rem;
        text-align: center;
        margin-bottom: 30px;
        font-weight: 900;
    
    }
    .services-grid {
        flex-wrap: wrap;
    }
    .service-item{
        flex-basis: calc((100% - 100px) / 3);
    }
    .service-item-full {
        flex-basis: 100%;
        max-width: 900px;
        margin: 0 auto;
    }
    .portfolio-item {
        flex-basis: calc(25% - 14px);
    }
    #portfolio h2{
        text-align: center;
        font-size: 4rem;
        margin-bottom: 30px;
        font-weight: 900;
    }
    .contact-container {
        flex-direction: row;
        align-items: flex-start;
        padding: 3rem;
    }
    .contact-info {
        flex: 1;
        text-align: left;
        padding-right: 2rem;
    }
    .info-item {
        justify-content: flex-start;
    }
    .social-links {
        justify-content: flex-start;
        margin-top: 2rem;
    }
    .contact-form-wrapper {
        flex: 1.5;
    }
    .service-item h3{
        font-size: 1.5rem;
    }
    #portfolio{
        max-width: 100%;
        width: 100%;
    }
    .form-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    .section-title{
        text-align: center;
        font-size: 4rem;
        font-weight: 900;
    }
    
}

@media (max-width: 767px) {
    .hero-section {
        flex-direction: column;
        height: 100vh;
    }
    .hero-panel {
        width: 100%;
        cursor: pointer;
    }
    .hero-content {
        pointer-events: none;
    }
    .background-container {
        background-attachment: scroll;
    }
    .plans-title{
        font-size: 3rem;
        text-align: center;
    }
    .contact-title{
        font-size: 3rem;
        text-align: center;
    }
}

/* Pricing Section Styles */

