:root {
    --primary: #00213f;
    --secondary: #0090d4;
    --accent: #00b4f2;
    --light: #f8fcff;
    --lighter: #e8f0fc;
    --white: #ffffff;
    --gray: #6c757d;
    --shadow: rgba(0, 33, 63, 0.15);
    --shadow-lg: rgba(0, 33, 63, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.rka-scope {
    font-family: "Inter", sans-serif;
    background: var(--light);
    color: var(--primary);
    line-height: 1.8;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.rka-scope h1,
.rka-scope h2,
.rka-scope h3,
.rka-scope h4,
.rka-scope h5,
.rka-scope h6 {
    font-family: "Lora", serif;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Header (Navbar) */
.navbar {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 1rem;
    width: 100%;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px var(--shadow);
}

.navbar-brand {
    font-family: "Lora", serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--white);
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    color: var(--white);
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
}

.navbar-collapse {
    background: var(--primary);
    padding: 1rem;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.hero-slide-1 {
    background: linear-gradient(135deg, rgba(0, 33, 63, 0.8), rgba(0, 144, 212, 0.7)),
        url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=1920&h=1080")
            center/cover;
}

.hero-slide-2 {
    background: linear-gradient(135deg, rgba(0, 33, 63, 0.8), rgba(0, 144, 212, 0.7)),
        url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=1920&h=1080")
            center/cover;
}

.hero-slide-3 {
    background: linear-gradient(135deg, rgba(0, 33, 63, 0.8), rgba(0, 144, 212, 0.7)),
        url("https://images.unsplash.com/photo-1516321310769-65e85b8e6351?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=1920&h=1080")
            center/cover;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 1.5rem;
    color: var(--white);
    background: rgba(0, 33, 63, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 33, 63, 0.2);
    margin: 1rem auto;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-primary-filled,
.btn-primary-outline {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin: 0.5rem;
}

.btn-primary-filled {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--white);
    border: none;
}

.btn-primary-filled:hover {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 144, 212, 0.3);
}

.btn-primary-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-primary-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 33, 63, 0.2);
}

.btn-primary-filled i,
.btn-primary-outline i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-primary-filled:hover i,
.btn-primary-outline:hover i {
    transform: translateX(4px);
}

.slick-dots {
    position: absolute;
    bottom: 40px;
    display: flex !important;
    gap: 12px;
    justify-content: center;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6) !important;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0;
}

.slick-dots li button::before {
    content: none !important;
}

.slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.2);
}

.slick-dots li.slick-active button {
    background: var(--accent) !important;
    transform: scale(1.4);
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: var(--light);
    width: 100%;
    margin: 0;
}

.services-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-section .lead {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--gray);
    max-width: 1000px;
    margin: 0 auto 2rem;
    text-align: center;
}

.service-card {
    background: linear-gradient(135deg, var(--white), var(--light));
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px var(--shadow);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.service-card h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 1.2rem;
    position: relative;
    transition: var(--transition);
}

.service-card h3:hover {
    color: var(--accent);
    transform: scale(1.05);
}

.service-card h3::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.service-card h3:hover::after {
    width: 100%;
}

.service-card p {
    color: var(--gray);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    flex-grow: 1;
}

.learn-more {
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.learn-more i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.learn-more:hover i {
    transform: translateX(6px);
}

/* Service Details Section */
.service-details-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--white), var(--lighter));
    width: 100%;
    margin: 0;
}

.service-details-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 2rem;
}

.detail-card {
    background: linear-gradient(135deg, var(--white), var(--light));
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px var(--shadow);
    margin-bottom: 2rem;
}

.detail-card img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
}

.detail-content {
    max-width: 500px;
    text-align: left;
}

.detail-content h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 1.2rem;
    position: relative;
    transition: var(--transition);
}

.detail-content h3:hover {
    color: var(--accent);
    transform: scale(1.05);
}

.detail-content h3::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.detail-content h3:hover::after {
    width: 100%;
}

.detail-content p {
    color: var(--gray);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 1.5rem;
}

.detail-content h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin: 1.5rem 0 0.8rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.detail-content h4::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.detail-content:hover h4::after {
    width: 100%;
}

.detail-content ul,
.detail-content .no-bullets {
    padding: 0;
    margin: 0 0 1.5rem;
}

.detail-content ul li {
    font-size: clamp(0.85rem, 2.2vw, 1rem);
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
}

.detail-content .no-bullets li {
    list-style: none;
    font-size: clamp(0.85rem, 2.2vw, 1rem);
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.detail-divider {
    width: 100px;
    height: 2px;
    background: var(--accent);
    margin: 2rem auto;
}

/* Industry Expertise Section */
.industries-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--lighter), var(--white));
    width: 100%;
    margin: 0;
}

.industries-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

.industries-section .lead {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--gray);
    max-width: 1000px;
    margin: 0 auto 2rem;
    text-align: center;
}

.industry-item {
    background: linear-gradient(135deg, var(--white), var(--light));
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px var(--shadow);
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industry-item i {
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: var(--secondary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.industry-item:hover i {
    color: var(--accent);
    transform: scale(1.25);
}

.industry-item .no-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-item .no-bullets li {
    font-size: clamp(0.8rem, 2.2vw, 0.95rem);
    color: var(--primary);
    margin-bottom: 0.5rem;
    position: relative;
    font-weight: 600;
    transition: var(--transition);
}

.industry-item .no-bullets li:hover {
    color: var(--accent);
    transform: scale(1.05);
}

.industry-item .no-bullets li::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.industry-item .no-bullets li:hover::after {
    width: 100%;
}

.btn-all {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
    border-radius: 50px;
    margin: 2rem auto 0;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    width: clamp(160px, 25vw, 300px);
}

.btn-all:hover {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 144, 212, 0.3);
}

/* Loading button states */
.btn-spinner {
    display: none;
}

.btn-all:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.gsap-animate {
    opacity: 0;
    transform: translateY(40px);
}

.gsap-animate.animated {
    opacity: 1;
    transform: translateY(0);
}


@media (min-width: 1400px) {
    .section-container {
        max-width: 1400px;
        padding: 0 1rem;
          padding-right: 6rem;
    }

   

    .navbar {
        padding: 1.2rem 2rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .hero-content p {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }

    .btn-primary-filled,
    .btn-primary-outline {
        padding: 0.85rem 2rem;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        min-width: 200px;
    }

    .btn-all {
        padding: 0.85rem 2.2rem;
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        min-width: 240px;
    }
}

@media (min-width: 991px) and (max-width: 1399px) {
    .hero-section,
    .hero-slide {
        min-height: 85vh;
    }
}

@media (max-width: 1200px) {
    .hero-section,
    .hero-slide {
        min-height: 80vh;
    }

    .hero-content {
        width: 100%;
        margin: 1rem auto;
        padding: 1.5rem;
    }

    .navbar {
        padding: 1rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.8rem;
    }

    .navbar-brand {
        font-size: clamp(1.3rem, 2.8vw, 1.6rem);
    }

    .navbar-nav .nav-link {
        font-size: clamp(0.85rem, 2.3vw, 0.95rem);
        padding: 0.5rem;
    }

    .navbar-collapse {
        padding: 0.8rem;
        margin: 0;
    }

    .hero-section,
    .hero-slide {
        min-height: 80vh;
        margin: 0;
        width: 100%;
    }

    .hero-content {
        padding: 1.5rem;
        width: 100%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }

    .hero-content p {
        font-size: clamp(0.85rem, 2.8vw, 1.1rem);
    }

    .btn-primary-filled,
    .btn-primary-outline {
        padding: 0.7rem 1.5rem;
        font-size: clamp(0.85rem, 2.3vw, 0.95rem);
        width: 100%;
        max-width: 250px;
    }

    .services-section,
    .service-details-section,
    .industries-section {
        padding: 3rem 0;
        margin: 0;
        width: 100%;
    }

    .services-section .section-container,
    .service-details-section .section-container,
    .industries-section .section-container {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .services-section h2,
    .service-details-section h2,
    .industries-section h2 {
        font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    }

    .service-card {
        min-height: 300px;
    }

    .service-card h3,
    .detail-content h3 {
        font-size: clamp(1.4rem, 2.8vw, 1.6rem);
    }

    .service-card p,
    .detail-content p,
    .services-section .lead,
    .industries-section .lead {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .detail-content h4 {
        font-size: clamp(1rem, 2.3vw, 1.3rem);
    }

    .detail-content ul li,
    .detail-content .no-bullets li {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }

    .detail-card img {
        max-width: 450px;
        margin-bottom: 1.5rem;
    }

    .detail-content {
        max-width: 100%;
    }

    .industry-item {
        min-height: 160px;
    }

    .industry-item i {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    }

    .industry-item .no-bullets li {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }

    .btn-all {
        padding: 0.7rem 1.8rem;
        font-size: clamp(0.85rem, 2.3vw, 0.95rem);
        width: clamp(140px, 20vw, 220px);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.7rem;
    }

    .navbar-brand {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    }

    .navbar-toggler {
        font-size: clamp(1rem, 2.3vw, 1.2rem);
    }

    .hero-section,
    .hero-slide {
        min-height: 70vh;
        margin: 0;
        width: 100%;
    }

    .hero-content {
        padding: 1.5rem;
        width: 100%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    }

    .hero-content p {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }

    .btn-primary-filled,
    .btn-primary-outline {
        padding: 0.6rem 1.5rem;
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
        max-width: 220px;
    }

    .services-section,
    .service-details-section,
    .industries-section {
        padding: 2.5rem 0;
        margin: 0;
        width: 100%;
    }

    .services-section h2,
    .service-details-section h2,
    .industries-section h2 {
        font-size: clamp(1.5rem, 3.2vw, 2rem);
    }

    .service-card h3,
    .detail-content h3 {
        font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    }

    .service-card p,
    .detail-content p,
    .services-section .lead,
    .industries-section .lead {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }

    .detail-content h4 {
        font-size: clamp(0.9rem, 2.2vw, 1.2rem);
    }

    .detail-content ul li,
    .detail-content .no-bullets li {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
    }

    .detail-card img {
        max-width: 350px;
        margin-top: 1.5rem;
    }

    .industry-item {
        min-height: 140px;
    }

    .industry-item i {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
    }

    .industry-item .no-bullets li {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
    }

    .btn-all {
        padding: 0.6rem 1.5rem;
        font-size: clamp(0.85rem, 2.2vw, 0.9rem);
        width: clamp(120px, 25vw, 200px);
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem;
    }

    .navbar-brand {
        font-size: clamp(1.1rem, 2.3vw, 1.4rem);
    }

    .navbar-nav .nav-link {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .hero-section,
    .hero-slide {
        min-height: 60vh;
        margin: 0;
        width: 100%;
    }

    .hero-content {
        padding: 1rem;
        width: 100%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: clamp(1.4rem, 4vw, 2.2rem);
    }

    .hero-content p {
        font-size: clamp(0.75rem, 2.2vw, 0.9rem);
    }

    .btn-primary-filled,
    .btn-primary-outline {
        padding: 0.5rem 1.2rem;
        font-size: clamp(0.75rem, 2vw, 0.85rem);
        max-width: 200px;
    }

    .services-section,
    .service-details-section,
    .industries-section {
        padding: 2rem 0;
        margin: 0;
        width: 100%;
    }

    .services-section .section-container,
    .service-details-section .section-container,
    .industries-section .section-container {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .services-section h2,
    .service-details-section h2,
    .industries-section h2 {
        font-size: clamp(1.4rem, 3vw, 1.8rem);
    }

    .service-card h3,
    .detail-content h3 {
        font-size: clamp(1.2rem, 2.3vw, 1.4rem);
    }

    .service-card p,
    .detail-content p,
    .services-section .lead,
    .industries-section .lead {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .detail-content h4 {
        font-size: clamp(0.8rem, 2vw, 1.1rem);
    }

    .detail-content ul li,
    .detail-content .no-bullets li {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    }

    .detail-card img {
        max-width: 300px;
    }

    .industry-item {
        min-height: 120px;
    }

    .industry-item i {
        font-size: clamp(1.1rem, 2.8vw, 1.4rem);
    }

    .industry-item .no-bullets li {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    }

    .btn-all {
        padding: 0.6rem 1.5rem;
        font-size: clamp(0.85rem, 2.2vw, 0.9rem);
        width: clamp(120px, 25vw, 200px);
    }
}

@media (max-width: 320px) {
    .navbar {
        padding: 0.4rem;
    }

    .navbar-brand {
        font-size: clamp(1rem, 2.2vw, 1.2rem);
    }

    .hero-section,
    .hero-slide {
        min-height: 50vh;
        margin: 0;
        width: 100%;
    }

    .hero-content {
        padding: 0.8rem;
        width: 100%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: clamp(1.2rem, 3.8vw, 1.8rem);
    }

    .hero-content p {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
    }

    .btn-primary-filled,
    .btn-primary-outline {
        padding: 0.4rem 1rem;
        font-size: clamp(0.7rem, 2vw, 0.8rem);
        max-width: 180px;
    }

    .services-section,
    .service-details-section,
    .industries-section {
        padding: 1.5rem 0;
    }

    .services-section h2,
    .service-details-section h2,
    .industries-section h2 {
        font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    }

    .service-card h3,
    .detail-content h3 {
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    }

    .service-card p,
    .detail-content p,
    .services-section .lead,
    .industries-section .lead {
        font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    }

    .detail-content h4 {
        font-size: clamp(0.75rem, 1.8vw, 1rem);
    }

    .detail-content ul li,
    .detail-content .no-bullets li {
        font-size: clamp(0.65rem, 1.8vw, 0.75rem);
    }

    .detail-card img {
        max-width: 280px;
    }

    .industry-item i {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .industry-item .no-bullets li {
        font-size: clamp(0.65rem, 1.8vw, 0.75rem);
    }

    .btn-all {
        padding: 0.5rem 1.2rem;
        font-size: clamp(0.8rem, 2vw, 0.85rem);
        width: clamp(100px, 25vw, 180px);
    }
}