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

body {
    font-family: 'Instrument Sans', sans-serif;
    color: #0a3071ff;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 400px;
    min-height: 600px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    background: linear-gradient(180deg, #2563eb 0%, #1e40af 100%);
    padding: 60px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 500px;
}

.search-wrapper {
    background: white;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 16px;
    font-size: 1rem;
    outline: none;
}

.location-select {
    border: none;
    padding: 16px;
    font-size: 1rem;
    color: #6b7280;
    outline: none;
    background: #f9fafb;
    border-radius: 8px;
}

.search-btn {
    background: #f97316;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.search-btn:hover {
    background: #ea580c;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
}

.pro-signup-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pro-signup-card p {
    opacity: 0.9;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    opacity: 0.9;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1.8rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    width: 100%;
    background: white;
    color: #2563eb;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 8px;
}

.submit-btn:hover {
    background: #f8fafc;
}

/* Find Professionals Section */
.find-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 60px;
    align-items: center;
    background: white;
}

.find-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-weight: bold;
}

.find-image {
    width: 100%;
    border-radius: 20px;
}

/* Services Section */
.services-section {
    background: #f9fafb;
    padding: 80px 60px;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.services-section p {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 24px;
    text-align: left;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Featured Professionals */
.featured-section {
    padding: 80px 60px;
    background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 100%);
}

.featured-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 48px;
    color: #1e40af;
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pro-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pro-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.pro-info {
    padding: 24px;
}

.pro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pro-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.pro-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-weight: 600;
}

.pro-badges {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-verified {
    background: #dbeafe;
    color: #2563eb;
}

.badge-top {
    background: #fee2e2;
    color: #dc2626;
}

/* Footer */
.footer {
    background: #1e40af;
    color: white;
    padding: 60px 60px 32px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-hero {
    text-align: center;
    padding: 40px 0;
}

.footer-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-cta {
    background: white;
    color: #1e40af;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin: 32px 0;
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-right {
        padding: 40px 24px;
    }

    .find-section {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }

    .services-grid,
    .professionals-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}


/* Hero Container */
.hero-main-container {
    display: grid;
    grid-template-columns: 67% 33%;
    /* Approx 2/3 and 1/3 split */
    min-height: 700px;
    /* Taller hero section */
    overflow: hidden;
}

/* Left Side - Construction Background with White Card Overlay */
.hero-left-side {
    background-color: #f7f3e8;
    /* Cream/Beige background color */
    background-image: url('../images/bg/bg-image-0.jpg');
    /* Optional: specific bg image if needed later */
    position: relative;
    padding: 0;
    /* Remove padding to let card sit properly if needed, usually flex center handles it */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

/* White Content Card */
.hero-content-card {
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    max-width: 650px;
    width: 90%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.hero-main-title {
    /* Assuming serif font from image */
    font-size: 3.5rem;
    /* Larger font */
    font-weight: 700;
    line-height: 1.1;
    color: #003666;
    /* Darker blue */
    margin-bottom: 24px;
}

.hero-subtitle-text {
    font-size: 15px;
    /* Slightly larger */
    color: #004d99;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-tagline-orange {
    color: #ff6b35;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 24px;
    display: block;
}

/* Service Icons - Blue Circle Style */
.hero-service-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-service-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 1px solid #00509e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00509e;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s;
}

.hero-service-icon:hover {
    background: #00509e;
    color: white;
    transform: scale(1.08);
}

/* Search Bar */
.hero-search-bar {
    background: white;
    border: 2px solid #00509e;
    /* Dark blue border */
    border-radius: 50px;
    padding: 5px 6px 5px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 500px;
}

.hero-search-bar:focus-within {
    border-color: #003666;
    /* Even darker on focus */
}

.hero-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px 0;
    color: #333;
    background: transparent;
}

.hero-search-bar input::placeholder {
    color: #555;
    /* Darker placeholder */
}

.hero-search-button {
    background: #ff7e47;
    color: white;
    border: none;
    width: 46px;
    /* Slightly larger */
    height: 46px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -2px;
    /* Pull right slightly */
}

.hero-search-button:hover {
    background: #e65a2b;
    transform: scale(1.05);
}

/* Customer Reviews */
.hero-reviews-section {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.hero-reviews-section a {
    color: #004080;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}

.hero-star-rating {
    color: #003666;
    font-size: 14px;
    letter-spacing: 2px;
}

/* Right Side - Professional Blue Section */
.hero-right-side {
    background-color: #00509e;
    /* Match the exact blue */
    padding: 60px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pro-header-section {
    display: flex;
    align-items: center;
    /* Center align image and text */
    gap: 15px;
    margin-bottom: 25px;
}

.pro-worker-image {
    width: 120px;
    height: 130px;
    display: block;
    position: relative;
}

.pro-worker-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Contain to show full cutout */
    /* Enhance the cutout look if needed, or assume PNG is good */
}

.pro-label-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pro-logo-text {
    font-weight: 800;
    font-size: 20px;
    color: #8bbdf7;
    /* Lighter blue for logo text */
    line-height: 1;
}

.pro-small-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
    margin-top: 2px;
    color: white;
}

.pro-main-heading {

    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.pro-description-text {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 320px;
}

.pro-signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pro-email-input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

.pro-email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.pro-email-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.pro-submit-button {
    background: #4fc3f7;
    /* Light blue button */
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: none;
    text-align: center;
}

.pro-submit-button:hover {
    background: #29b6f6;
}

@media (max-width: 992px) {
    .hero-main-container {
        grid-template-columns: 1fr;
    }

    .hero-right-side {
        min-height: auto;
        padding: 60px 30px;
    }

    .hero-left-side {
        min-height: auto;
        padding: 40px 20px;
    }

    .about-new-section {
        flex-direction: column;
        padding: 60px 20px;
        height: auto;
    }

    .about-images-wrapper {
        min-height: 400px;
        /* Space for images on mobile */
        margin-bottom: 50px;
        width: 100%;
    }

    .about-content-wrapper {
        width: 100%;
        padding-left: 0;
    }
}

/* New About Section Styles */
.about-new-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background: linear-gradient(135deg, #fceeff 0%, #e6f7ff 50%, #c4e8fd 100%);
    position: relative;
    overflow: hidden;
}

/* Left Images Composition */
.about-images-wrapper {
    position: relative;
    width: 45%;
    height: 500px;
}

.about-img-group-1 {
    position: absolute;
    left: 0;
    bottom: 20px;
    z-index: 2;
    width: 680px;
}



.about-img-1 {
    position: relative;
    z-index: 2;
    width: 100%;
    /* Mask or transparent background image expected */
}

.about-img-group-2 {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
    width: 260px;
}

.about-green-bg {
    position: absolute;
    top: 20px;
    right: 0;
    width: 240px;
    height: 300px;
    background-color: #d4fce6;
    /* Light Green */
    z-index: -1;
    border-radius: 4px;
}

.about-img-2 {
    width: 100%;
    border-radius: 8px;
    /* Assuming square photo, add radius */
    height: 300px;
    object-fit: cover;
}

/* Decorative Icons */
.about-icon-box {
    width: 60px;
    height: 60px;
    border: 2px solid;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: transparent;
    position: absolute;
    z-index: 3;
}

.icon-leaf {
    border-color: #008000;
    color: #008000;
    top: 40px;
    right: 40px;
    /* Inside green area */
}

.icon-truck {
    border-color: #4b0082;
    color: #4b0082;
    bottom: 40px;
    right: -20px;
    /* Offset from purple */
    background: white;
    /* Needs bg to stand out? Image seems transparent box */
    background: rgba(255, 255, 255, 0.4);
}

/* Right Content */
.about-content-wrapper {
    width: 50%;
    padding-left: 40px;
}

.about-subtitle {
    color: #58a6ff;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
}

.about-title {

    color: #003666;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-buttons-row {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.about-pill-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-solid-blue {
    background: #00509e;
    color: white;
    border: 1px solid #00509e;
}

.btn-solid-blue:hover {
    background: #003666;
    color: white;
}

.btn-outline-blue {
    background: white;
    color: #003666;
    border: 1px solid #003666;
}

.btn-outline-blue:hover {
    background: #f0f8ff;
    color: #003666;
}

.about-desc {
    color: #444;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Stats Row */
.about-stats-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    min-width: 180px;
}

.stat-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.bg-green-grad {
    background: linear-gradient(135deg, #42e695 0%, #3bb2b8 100%);
}

.bg-blue-grad {
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
}

.bg-purple-grad {
    background: linear-gradient(135deg, #ab47bc 0%, #7b1fa2 100%);
}

.stat-info h5 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    color: #333;
}

.stat-info p {
    font-size: 11px;
    margin: 0;
    color: #666;
    line-height: 1.2;
}

/* Discovery Area */
.discovery-section-container {
    padding: 80px 0;
    background: white;
}

.discovery-pill {
    background: #e1f5fe;
    color: #00509e;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 28px;
    display: inline-block;
    margin-bottom: 20px;
}

.discovery-title {

    font-size: 5rem;
    color: #003666;
    margin-bottom: 20px;
}

.discovery-subtitle {
    color: #00509e;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 60px;
}

.discovery-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    /* Soft neumorphic shadow */
    transition: all 0.3s;
    height: 100%;
    text-align: left;
}

.discovery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.img-overlay-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    width: 100%;
    margin-bottom: 24px;
}

.img-overlay-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.discovery-card:hover .img-overlay-box img {
    transform: scale(1.05);
}

.icon-square-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    /* Rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.1);
}

.icon-square-overlay i {
    color: white;
    font-size: 32px;
}

.discovery-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #003666;
    margin-bottom: 10px;
}

.discovery-card-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Featured Professionals Section */
.featured-pro-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f8ff 0%, #fff 100%);
    /* Very light blue fade */
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.pro-badge i {
    color: #0099ff;
    font-size: 30px;
    font-weight: bold;
}

.pro-badge span {
    color: #0099ff;
    font-weight: 800;
    font-size: 30px;
    letter-spacing: 0.5px;
}

.pro-card {
    background: white;
    border-radius: 12px;
    /* Sharper, more professional radius */
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeff5;
    /* Subtle border for definition */
    transition: all 0.3s ease;
}

.pro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #d0e0ff;
}

.pro-img-container {
    height: 220px;
    /* Slightly more compact */
    border-radius: 8px;
    /* Matching sharp radius */
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.pro-img-container img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pro-card:hover .pro-img-container img {
    transform: scale(1.03);
}

.pro-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.pro-title {
    font-weight: bold;
    font-size: 32px;
    color: #05396c;
    margin: 0;
}

.pro-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    color: #05396c;
    background: #f7f9fc;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 25px;
}

.pro-rating i {
    color: #164295;
    font-size: 22px;
}

.pro-name {
    color: #05396c;
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
    font-weight: 500;
}

.pro-action-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-contact {
    background: #288ae9;
    color: #05396c;
    border: none;
    padding: 2px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 28px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none !important;
}

.btn-contact:hover {
    background: #003d7a;
    /* Darker on hover */
    color: white;
    transform: translateY(-1px);
}

.price-badge {
    background: #ff8d18;
    color: white;
    font-weight: 700;
    padding: 4px;
    border-radius: 20px;
    min-width: 65px;
    text-align: center;
    border: 1px solid rgba(230, 126, 34, 0.2);
    font-size: 24px;
}

.menu-icon-btn {
    background: white;
    border: 1px solid #e1e4e8;
    color: #6c757d;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.menu-icon-btn {
    border-color: white;
    color: #00509e;
    font-size: 38px;
    background: white;
}

.menu-icon-btn:hover {
    color: #5299df;
}