* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
}

header {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1000px;
    padding: 15px 50px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.50);
}


.nav-left,
.nav-right {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 20px;
}

.logo img {
    width: 100px;
    height: 50px;
    object-fit: cover;
}

/* Hero Section */

.hero {
    text-align: center;
    /* margin-top: 60px; */
}

.hero-image img {
    width: 100%;
    margin-bottom: -320px;
    margin-top: 20px;
    /* padding: 50px 50px ; */
}

.hero h1 {
    font-size: 75px;
    font-weight: 600;
    color: #222;
    line-height: 1.2;

}

.hero p {
    font-size: 25px;
    font-weight: 100px;
    color: #222;
    /* line-height: 1; */
}

.h2 {


    font-size: 25px;
    font-weight: 100px;
    color: #222;
    font-style: italic;
}

.hero-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 30px;

}

.button {
    padding: 15px;
    border-radius: 15px;
    border: none;
    background-color: rgb(253, 174, 22);
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.50);

}

.button p {
    color: rgb(36, 35, 35);
    font-size: 20px;

}

.trusted-box {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    /* background-color: rgb(178, 178, 178); */
    padding: 30px;

}

.avatars {
    display: flex;


}

.avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    margin-left: -15px;
}

.avatars img:first-child {
    margin-left: 0;
}

.trusted-text {
    font-size: 18px;
    color: #333;
}

.trusted-text span {
    color: #2f6df6;
    font-weight: 600;
}

.logo-section {
    padding: 60px 0;
    overflow: hidden;

    /* background-color: rgb(178, 178, 178); */



    background-size: 60px 60px;
}

.logo-slider {
    display: flex;
    width: 200%;
    animation: scroll 40s linear infinite;
}

.logo-track {
    display: flex;
    gap: 80px;
    align-items: center;
}

.logo-track img {
    height: 75px;
    width: 75px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-80%);
    }
}

.section-title {
    text-align: center;
    color: #242323;
    margin-bottom: 60px;
}

.section-title h1 {
    font-size: 45px;
    margin-bottom: 10px;
}

.section-title p {
    color: #000000;
    font-size: 15px;
}

/* Grid Layout */

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 200px 0 200px;
}

/* Card */

.service-card {
    background: linear-gradient(145deg, #f4a300, #ffba2f);
    padding: 35px 28px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

/* Glow Effect */

.service-card::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent);
    top: -60%;
    left: -60%;
    opacity: 0;
    transition: 0.5s;
}

.service-card:hover::before {
    opacity: 1;
    top: -20%;
    left: -20%;
}

/* Icon */

.service-icon {
    width: 70px;
    height: 70px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 12px;
    margin-bottom: 18px;
    animation: float 3s ease-in-out infinite;
}

/* Floating Animation */

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }

    100% {
        transform: translateY(0)
    }
}

/* Title */

.service-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111;
}

/* Description */

.service-card p {
    font-size: 14px;
    color: #222;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features */

.features {
    list-style: none;
    margin-bottom: 20px;
}

.features li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.features li:hover {
    transform: translateX(6px);
}

.features i {
    background: #000;
    color: #fff;
    padding: 6px;
    border-radius: 5px;
    font-size: 11px;
}

/* Button */

.card-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: 0.4s;
}

.card-btn:hover {
    background: #222;
}

/* Responsive */

@media(max-width:768px) {

    .section-title h1 {
        font-size: 30px;
    }

}

.arv3d-section {
    position: relative;
    padding: 100px 5%;
    text-align: center;
    overflow: hidden;

}

/* MOUSE GLOW BACKGROUND */

.arv3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-color: rgb(0, 0, 0);
}

.arv3d-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 174, 22, 0.25), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: 0.15s linear;
    filter: blur(40px);
}

/* TITLE */

.arv3d-title {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid rgb(253, 174, 22);
    border-radius: 30px;
    margin-bottom: 150px;
    transition: 0.4s;
    color: rgb(0, 0, 0);
    cursor: pointer;

}

.arv3d-title:hover {
    background: rgb(253, 174, 22);
    color: #000;
}

/* WRAPPER */

.arv3d-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    margin-bottom: 100px;

}

/* CAROUSEL */

.arv3d-carousel {
    position: relative;
    width: 300px;
    height: 450px;
    transform-style: preserve-3d;
    transition: transform 1s;
}

/* CARD */

.arv3d-card {
    position: absolute;
    width: 260px;
    height: 420px;
    left: 20px;
    top: 15px;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

/* ACTIVE */

.arv3d-card.arv3d-active {
    border: 2px solid rgb(253, 174, 22);
    box-shadow: 0 20px 60px rgba(253, 174, 22, 0.4);
}

/* VIDEO */

.arv3d-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */

.arv3d-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.arv3d-card:hover .arv3d-overlay {
    opacity: 1;
}

/* BUTTONS */

.arv3d-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(253, 174, 22);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 3;
}

.arv3d-prev {
    left: 5%;
}

.arv3d-next {
    right: 5%;
}

.arv3d-btn:hover {
    background: #fff;
    color: #000;
}

/* RESPONSIVE */

@media(max-width:768px) {
    .arv3d-carousel {
        transform: scale(0.8);
    }
}

/* SECTION */

.arvpf-section {
    padding: 100px 6%;
    text-align: center;
}

/* TITLE */

.arvpf-title {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid rgb(253, 174, 22);
    border-radius: 40px;
    font-size: 20px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.arvpf-title:hover {
    background: rgb(253, 174, 22);
    color: #000;
}

/* DESCRIPTION */

.arvpf-desc {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
}

/* GRID */

.arvpf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* CARD */

.arvpf-card {
    position: relative;
    background: black;
    border-radius: 20px;
    padding: 40px 20px;
    transition: 0.4s;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* GLOW EFFECT */

.arvpf-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 174, 22, 0.15), transparent 60%);
    opacity: 0;
    transition: 0.5s;
}


.arvpf-card:hover::before {
    opacity: 1;
}

/* HOVER ANIMATION */

.arvpf-card:hover {
    transform: translateY(-12px) scale(1.03);
    border: 1px solid rgb(253, 174, 22);
    box-shadow: 0 20px 50px rgba(253, 174, 22, 0.2);
}

/* ICON */

.arvpf-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: rgb(253, 174, 22);
}

/* CARD TITLE */

.arvpf-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

/* CARD TEXT */

.arvpf-card p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
}

/* BUTTON */

.arvpf-btn {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgb(253, 174, 22);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.arvpf-btn:hover {
    background: rgb(253, 174, 22);
    color: #000;
}

/* ANIMATION (ON LOAD) */

.arvpf-card {
    opacity: 0;
    transform: translateY(40px);
    animation: arvpfFadeUp 0.6s ease forwards;
}

.arvpf-card:nth-child(2) {
    animation-delay: 0.1s;
}

.arvpf-card:nth-child(3) {
    animation-delay: 0.2s;
}

.arvpf-card:nth-child(4) {
    animation-delay: 0.3s;
}

.arvpf-card:nth-child(5) {
    animation-delay: 0.4s;
}

.arvpf-card:nth-child(6) {
    animation-delay: 0.5s;
}

.arvpf-card:nth-child(7) {
    animation-delay: 0.6s;
}

.arvpf-card:nth-child(8) {
    animation-delay: 0.7s;
}

@keyframes arvpfFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:768px) {
    .arvpf-section {
        padding: 70px 5%;
    }
}

/* SECTION */

.arvxpro-section {
    padding: 120px 5%;
    text-align: center;
    overflow: hidden;
}

/* TITLE */

.arvxpro-title {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid rgb(253, 174, 22);
    border-radius: 30px;
    margin-bottom: 70px;
    transition: 0.4s;
}

.arvxpro-title:hover {
    background: rgb(253, 174, 22);
    color: #000;
}

/* SLIDER */

.arvxpro-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TRACK */

.arvxpro-track {
    display: flex;
    gap: 40px;
    transition: 0.6s cubic-bezier(.25, .8, .25, 1);
}

/* CARD BASE */

.arvxpro-card {
    width: 300px;
    height: 440px;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: scale(0.85);
    opacity: 0.4;
    filter: blur(3px);
}

/* ACTIVE */

.arvxpro-card.arvxpro-active {
    transform: scale(1.1);
    opacity: 1;
    filter: blur(0);
    border: 2px solid rgb(253, 174, 22);
    box-shadow: 0 30px 80px rgba(253, 174, 22, 0.35);
    z-index: 5;
}

/* SIDE */

.arvxpro-card.arvxpro-side {
    transform: scale(0.9);
    opacity: 0.6;
    filter: blur(1px);
}

/* MEDIA */

.arvxpro-media {
    width: 100%;
    height: 55%;
}

.arvxpro-media video,
.arvxpro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */

.arvxpro-content {
    padding: 18px;
    text-align: left;
}

.arvxpro-text {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.arvxpro-client {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

.arvxpro-name {
    font-weight: bold;
    font-size: 16px;
}

.arvxpro-position {
    font-size: 13px;
    color: rgb(253, 174, 22);
}

.arvxpro-company {
    font-size: 12px;
    color: #aaa;
}

/* BUTTON */

.arvxpro-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(253, 174, 22);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
}

.arvxpro-prev {
    left: 2%;
}

.arvxpro-next {
    right: 2%;
}

.arvxpro-btn:hover {
    background: #fff;
    color: #000;
}

/* DOTS */

.arvxpro-dots {
    margin-top: 40px;
}

.arvxpro-dot {
    height: 10px;
    width: 10px;
    background: #555;
    margin: 0 5px;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
}

.arvxpro-dot.arvxpro-active {
    background: rgb(253, 174, 22);
    transform: scale(1.4);
}

/* RESPONSIVE */

@media(max-width:768px) {
    .arvxpro-card {
        width: 230px;
        height: 380px;
    }
}

/* PARTICLES BACKGROUND */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* SECTION */
.team-section {
    padding: 100px 5%;
    text-align: center;
    background-color: black;
}

.team-title {
    font-size: 32px;
    font-weight: 600;
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid rgb(253, 174, 22);
    border-radius: 30px;
    margin-bottom: 60px;
    transition: 0.3s;
    color: white;
}

.team-title:hover {
    background: rgb(253, 174, 22);
    color: #000;
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* CARD */
.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
}

.team-card::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(253, 174, 22, 0.4), transparent);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.5s;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 30px rgba(253, 174, 22, 0.5);
}

/* IMAGE */
.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgb(253, 174, 22);
    margin-bottom: 15px;
}

/* TEXT */
.team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.team-skill {
    color: rgb(253, 174, 22);
    font-size: 14px;
    margin-bottom: 10px;
}

.team-position {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 10px;
    color: white;
}

.team-desc {
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 15px;
    color: white;
}

/* SOCIAL ICONS */
.social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgb(253, 174, 22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.social a:hover {
    background: rgb(253, 174, 22);
    color: #000;
    transform: scale(1.2);
}

/* BUTTON */
.view-btn {
    margin-top: 50px;
    padding: 12px 35px;
    border-radius: 30px;
    border: 2px solid rgb(253, 174, 22);
    background: none;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.view-btn:hover {
    background: rgb(253, 174, 22);
    color: #000;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .team-title {
        font-size: 24px;
    }
}

/* FOOTER MAIN */
.footer {
    background: linear-gradient(135deg, #000, #111);
    padding: 80px 5% 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* animated background glow */
.footer::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgb(253, 174, 22);
    filter: blur(150px);
    opacity: .2;
    top: -100px;
    left: -100px;
    animation: moveGlow 8s infinite alternate;
}

@keyframes moveGlow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* COLUMN */
.footer-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: rgb(253, 174, 22);
    position: relative;
}

/* underline animation */
.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: rgb(253, 174, 22);
    transition: .4s;
}

.footer-col:hover h3::after {
    width: 50%;
}

/* LINKS */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: .3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: rgb(253, 174, 22);
    transform: translateX(8px);
}

/* TEXT */
.footer-col p {
    color: #aaa;
    line-height: 1.6;
}

/* IMAGE CARD */
.footer-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 20px;
    border: 3px solid rgb(253, 174, 22);
    transition: .4s;
}

.footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-image:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgb(253, 174, 22);
}

/* CONTACT BOX */
.contact-box p {
    margin: 10px 0;
    color: #ccc;
}

.contact-box i {
    color: rgb(253, 174, 22);
    margin-right: 10px;
}

/* SOCIAL ICONS */
.social {
    margin-top: 20px;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    margin-right: 10px;
    color: #fff;
    transition: .3s;
    text-decoration: none;
}

.social a:hover {
    background: rgb(253, 174, 22);
    color: #000;
    transform: translateY(-5px) scale(1.1);
}

/* FORM */
.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    outline: none;
    background: #111;
    color: #fff;
    border-radius: 5px;
    transition: .3s;
}

.footer-form input:focus,
.footer-form textarea:focus {
    border: 1px solid rgb(253, 174, 22);
    box-shadow: 0 0 10px rgb(253, 174, 22);
}

.footer-form button {
    width: 100%;
    padding: 12px;
    border: none;
    background: rgb(253, 174, 22);
    color: #000;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: .3s;
}

.footer-form button:hover {
    background: #fff;
    transform: scale(1.05);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #222;
    padding-top: 20px;
    color: #777;
    font-size: 14px;
}

/* HOVER FLOAT EFFECT */
.footer-col {
    transition: .4s;
}

.footer-col:hover {
    transform: translateY(-10px);
}

/* RESPONSIVE */
@media(max-width:768px) {
    .footer {
        padding: 50px 5%;
    }
}

/* SECTION */
.footer-cta {
  position: relative;
  padding: 80px 10%;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(270deg, #ff416c, #ff4b2b, #6a11cb, #2575fc);
  background-size: 600% 600%;
  animation: gradientMove 12s ease infinite;
}

/* ANIMATED GRADIENT */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* OVERLAY PATTERN EFFECT */
.footer-cta::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveDots 20s linear infinite;
  top: 0;
  left: 0;
}

@keyframes moveDots {
  from { transform: translate(0,0); }
  to { transform: translate(-100px, -100px); }
}

/* CONTENT */
.footer-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* TEXT */
.footer-text h1 {
  font-size: 42px;
  font-weight: 700;
}

.footer-text span {
  color: #ffd93d;
}

.footer-text p {
  margin-top: 10px;
  opacity: 0.9;
}

/* BUTTON */
.cta-btn {
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* BUTTON HOVER */
.cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: #fff;
  color: #ff416c;
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* EXTRA FOOTER LINKS AREA */
.footer-bottom {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

/* LINKS */
.footer-links a {
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffd93d;
}

/* SOCIAL ICONS */
.social-icons i {
  margin-right: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  transform: scale(1.3);
  color: #ffd93d;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-text h1 {
    font-size: 30px;
  }
}