@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@100;200;300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Outfit', 'Space Grotesk', system-ui, -apple-system, sans-serif;
}

:root {
    --bg-color: #0a0a0a;
    --snd-bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --main-color: #c0c0c0;
    --accent-color: #DC143C;
    --accent-light: #FF6B6B;
    --accent-dark: #8B0000;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-strong: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-strong: rgba(255, 255, 255, 0.2);
    --glow-color: rgba(192, 192, 192, 0.3);
    --ruby-glow: rgba(220, 20, 60, 0.4);
    --ruby-glow-strong: rgba(220, 20, 60, 0.6);
    --ruby-shadow: rgba(220, 20, 60, 0.2);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: linear-gradient(135deg, var(--bg-color) 0%, #0f0f0f 50%, var(--bg-color) 100%);
    color: var(--text-color);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, var(--ruby-shadow) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--ruby-glow) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(192, 192, 192, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 60% 10%, var(--ruby-shadow) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
    animation: aurora 8s ease-in-out infinite;
}

@keyframes aurora {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

/* Header & NavBar Section */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.5s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--glow-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header:hover::before {
    opacity: 1;
}

.logo {
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: default;
    background: linear-gradient(135deg, var(--main-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--glow-color);
    transition: 0.3s ease;
    position: relative;
}

.logo:hover {
    transform: scale(1.05);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.navbar a {
    font-size: 1.9rem;
    color: var(--text-color);
    margin-left: 4rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.navbar a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--ruby-glow);
}

.navbar a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass-bg-strong);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    z-index: -1;
}

.navbar a:hover::before,
.navbar a.active::before {
    width: 120%;
}

.navbar a:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.navbar a:hover,
.navbar a.active {
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--ruby-glow);
    transform: translateY(-2px);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    cursor: pointer;
    display: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
    position: relative;
}

#menu-icon:hover {
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--ruby-glow);
    transform: scale(1.1) rotate(5deg);
}

/* Home Section */

.home {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img img {
    width: 25vw;
    animation: floatImage 4s ease-in-out infinite;
    border-radius: 50%;
    border: 3px solid var(--glass-border);
    box-shadow:
        0 0 30px var(--glow-color),
        0 0 60px rgba(192, 192, 192, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    position: relative;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
}

.home-img img:hover {
    box-shadow:
        0 0 40px var(--gold-glow),
        0 0 80px var(--accent-color),
        0 0 120px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2.4rem);
    }

    100% {
        transform: translateY(0);
    }
}

.home-content {
    margin-left: 5rem;
}

.home-content h3 {
    font-size: 3.7rem;
    font-weight: 700;
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 2rem;
}

span {
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light), var(--accent-dark));
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px var(--ruby-glow);
    animation: ruby-pulse 2s ease-in-out infinite;
    font-weight: 600;
}

@keyframes ruby-pulse {

    0%,
    100% {
        background-position: 0% 50%;
        text-shadow: 0 0 20px var(--ruby-glow);
    }

    50% {
        background-position: 100% 50%;
        text-shadow: 0 0 30px var(--ruby-glow-strong);
    }
}

.home-content h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-content p {
    font-size: 1.6rem;
}

.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--main-color);
    margin: 3rem 1.5rem 3rem 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.social-media a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    transform: scale(0.5);
}

.social-media a::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light), var(--accent-color));
    opacity: 0;
    border-radius: 50%;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.social-media a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-media a:hover::after {
    opacity: 1;
}

.social-media a:hover {
    transform: scale(1.3) translateY(-8px) rotate(10deg);
    color: white;
    box-shadow:
        0 15px 40px var(--ruby-glow-strong),
        0 0 30px var(--ruby-glow);
    border-color: var(--accent-color);
}

.social-media a i {
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 4rem;
    box-shadow: 0 4px 15px var(--ruby-shadow);
    font-size: 1.6rem;
    color: white;
    letter-spacing: .1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 4rem;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover::after {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 40px var(--ruby-glow-strong);
    color: white;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* About Section */

.about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--snd-bg-color);
}

.about-img img {
    width: 25vw;
    border: 3px solid var(--glass-border);
    border-radius: 50%;
    box-shadow:
        0 0 30px var(--glow-color),
        0 0 60px rgba(192, 192, 192, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    position: relative;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
}

.about-img img:hover {
    box-shadow:
        0 0 40px var(--gold-glow),
        0 0 80px var(--accent-color),
        0 0 120px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.heading {
    text-align: center;
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-color), var(--main-color), var(--accent-color));
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease-in-out infinite;
    text-shadow: 0 0 30px var(--glow-color);
    position: relative;
}

.heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
    border-radius: 2px;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.about-content {
    padding: 0 4rem;
}

.about-content h2 {
    text-align: left;
    line-height: 1.2;
}

.about-content h3 {
    font-size: 3rem;
}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

/* Services Section */

.services h2 {
    margin-bottom: 5rem;
}

.services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.services-container .services-box {
    flex: 1 1 30rem;
    background:
        linear-gradient(135deg, var(--glass-bg-strong) 0%, var(--glass-bg) 100%),
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    padding: 6rem 2rem 6rem;
    border-radius: 2rem;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(35px) saturate(1.8) contrast(1.2);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.services-container .services-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light), var(--accent-color), var(--accent-light));
    background-size: 400% 400%;
    border-radius: 2rem;
    z-index: -1;
    opacity: 0;
    animation: ruby-border 4s linear infinite;
    transition: opacity 0.6s ease;
}

.services-container .services-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.3), transparent);
    transition: left 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.services-container .services-box:hover::before {
    opacity: 1;
}

.services-container .services-box:hover::after {
    left: 100%;
}

.services-container .services-box:hover {
    transform: scale(1.08) translateY(-15px) rotateY(5deg);
    box-shadow:
        0 30px 60px var(--ruby-glow-strong),
        0 0 50px var(--ruby-glow),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(45px) saturate(2.5) contrast(1.5);
}

@keyframes ruby-border {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.services-box i {
    font-size: 7rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--ruby-glow);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 20px var(--ruby-glow));
}

.services-box:hover i {
    transform: scale(1.2) rotateY(15deg);
    text-shadow: 0 0 40px var(--ruby-glow-strong);
    filter: drop-shadow(0 0 30px var(--ruby-glow-strong));
}

.services-box h3 {
    font-size: 2.6rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    font-family: 'Outfit', sans-serif;
}

.services-box p {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
    line-height: 1.6;
    font-family: 'Space Grotesk', sans-serif;
}

/* ******************Testimonials Section********************* */

.testimonials {
    background: var(--snd-bg-color);
}

.testimonials-box {
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonials .heading {
    margin-bottom: 5rem;
}

.testimonials-box img {
    width: 15rem;
    border-radius: 50%;
    border: 3px solid var(--glass-border);
    box-shadow:
        0 0 30px var(--glow-color),
        0 0 60px rgba(192, 192, 192, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease-in-out;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
}

.testimonials-box img:hover {
    box-shadow:
        0 0 40px var(--gold-glow),
        0 0 80px var(--accent-color),
        0 0 120px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testimonial-item {
    min-height: 450px;
    max-width: 450px;
    background:
        linear-gradient(135deg, var(--glass-bg-strong) 0%, var(--glass-bg) 100%),
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 2rem;
    margin: 0 2rem;
    padding: 20px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-color);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(30px) saturate(1.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light), var(--accent-color));
    border-radius: 2rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-item:hover::before {
    opacity: 1;
}

.testimonial-item:hover::after {
    left: 100%;
}

.testimonial-item:hover {
    transform: scale(1.05) translateY(-10px) rotateX(5deg);
    box-shadow:
        0 25px 50px var(--ruby-glow-strong),
        0 0 50px var(--ruby-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(40px) saturate(2);
}

.testimonial-item h2 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.testimonial-item p {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.6;
}

#star {
    color: var(--accent-color);
    font-size: 2rem;
    text-shadow: 0 0 10px var(--gold-glow);
}

/* ******************Contact Section********************* */

.contact {
    background-color: var(--bg-color);
}

.contact h2 {
    margin-bottom: 3rem;
    color: var(--main-color);
}

.contact form {
    max-width: 80rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--bg-color);
    backdrop-filter: blur(40px) saturate(2) contrast(1.3);
    border: 2px solid var(--glass-border);
    border-radius: 2rem;
    padding: 4rem;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact form:hover {
    border-color: var(--accent-color);
    box-shadow:
        0 0 30px var(--ruby-glow-strong),
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.contact form .input-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: var(--snd-bg-color);
    border-radius: 1.2rem;
    border: 1px solid var(--glass-border-strong);
    margin: 0.7rem 0;
    resize: none;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Space Grotesk', sans-serif;
}

.contact form .input-box input:focus,
.contact form textarea:focus {
    border-color: var(--accent-color);
    box-shadow:
        0 0 30px var(--ruby-glow-strong),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.4);
    background: var(--bg-color);
    transform: translateY(-2px);
}

.contact form .input-box input::placeholder,
.contact form textarea::placeholder {
    color: rgba(224, 224, 224, 0.5);
    font-family: 'Space Grotesk', sans-serif;
}

.contact form .input-box input {
    width: 49%;
    margin: 0.7rem 0.35rem;
}

.contact form .btn {
    margin-top: 2rem;
}

/* ******************Footer Section********************* */

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background-color: var(--snd-bg-color);
}

.footer .social {
    text-align: center;
    padding-bottom: 25px;
    color: var(--main-color);
}

.footer .social a {
    font-size: 25px;
    color: var(--main-color);
    border: 1px solid var(--glass-border);
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s ease-in-out;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.footer .social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), #ffed4e);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.footer .social a:hover::before {
    opacity: 1;
}

.footer .social a:hover {
    transform: scale(1.2) translateY(-10px);
    color: var(--bg-color);
    box-shadow: 0 8px 30px var(--gold-glow);
    border-color: var(--accent-color);
}

.footer .copyright {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    color: var(--text-color);
}

/* BreakPoint */

@media (max-width:1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width:991px) {
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3%;
    }

    .services {
        padding: 7rem
    }

    .testimonials .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact form .input-box input {
        width: 100%;
    }

    .footer {
        padding: 2rem 3%;
    }
}

@media (max-width:786px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 255px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        background: var(--bg-color);
        border: 1px solid var(--glass-border);
        transition: all 0.5s ease;
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .navbar a {
        display: block !important;
        padding: 17px;
        font-size: 22px;
        color: var(--text-color);
        border-bottom: 1px solid var(--glass-border);
        transition: all 0.3s ease;
        margin-left: 0 !important;
        text-transform: none;
        letter-spacing: normal;
        font-family: 'Outfit', sans-serif;
    }

    .navbar a::before {
        display: none;
    }

    .navbar a::after {
        display: none;
    }

    .navbar a:hover {
        background: var(--glass-bg-strong);
        color: var(--accent-color);
        border-left: 3px solid var(--accent-color);
    }

    .navbar.active {
        right: 0;
    }

    .home {
        flex-direction: column;
    }

    .home-content h3 {
        font-size: 2.6rem;
    }

    .home-content h1 {
        font-size: 5rem;
    }

    .home-content {
        order: 2;
        margin-left: 1rem;
    }

    .home-img img {
        width: 70vw;
        margin-top: 4rem;
    }

    .about {
        flex-direction: column-reverse;
    }

    .about-img img {
        width: 70vw;
        margin-top: 4rem;
    }

    .services h2 {
        margin-bottom: 3rem;
    }
}

@media (max-width:617px) {
    .home-img img {
        width: 70vw;
        margin-top: 8rem;
    }

    .about-img img {
        width: 70vw;
        margin-top: 4rem;
    }
}

@media (max-width:450px) {
    html {
        font-size: 50%;
    }
}