body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 0;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    width: 100px;
    height: 100px;
    margin-right: 1rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4a90e2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: logoSpin 20s linear infinite;
}

.logo:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}

@keyframes logoSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #9ca3af;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #2d3748;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu a:hover {
    background: #4b5563;
    color: #fff;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Service page styles */
.breadcrumb {
    margin: 1rem 0 2rem 0;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #4a90e2;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.service-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-content {
    margin-bottom: 3rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-detail {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: 1px solid #e0e0e0;
}

.service-detail h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-detail p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #444;
}

.service-detail ul {
    list-style: none;
    padding: 0;
}

.service-detail li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.service-detail li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #003366;
    font-weight: bold;
}

.service-detail li:last-child {
    border-bottom: none;
}

.cta-section {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-section .cta-btn {
    display: inline-block;
    background: #4b5563;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}

.cta-section .cta-btn:hover {
    background: #1a1a1a;
}

/* Banking details styles */
.banking-section {
    margin-bottom: 3rem;
}

.banking-section h2 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.banking-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffcc00;
}

.banking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bank-card {
    background: #003366;
    color: #fff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.bank-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bank-card h3 {
    color: #ffcc00;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.bank-details {
    text-align: left;
}

.bank-details p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.bank-details strong {
    color: #ffcc00;
}

/* Custom bank icon styles */
.bank-icon-container {
    text-align: center;
    margin-bottom: 1.5rem;
}
.bank-icon-custom {
    width: 80px;
    height: 80px;
    display: inline-block;
    font-size: 3rem;
    text-align: center;
    line-height: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.bank-icon-custom:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Compact navbar for banking details page */
.banking-details-page header {
    padding: 0.5rem 0;
}
.banking-details-page .header-flex {
    align-items: center;
    gap: 1rem;
}
.banking-details-page .logo {
    width: 180px;
    height: auto;
}
.banking-details-page h1 {
    font-size: 1.2rem;
    margin: 0;
}
.banking-details-page nav ul {
    gap: 1rem;
}
.banking-details-page nav a {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
}

/* Banking home page styles */
.banking-hero-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: #fff;
    border-radius: 16px;
    margin-top: 2rem;
}

.banking-hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #fff;
}

.banking-hero-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.banking-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.bank-card-home {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.bank-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #003366, #004080, #ffcc00);
}

.bank-card-home:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: #003366;
}

.bank-card-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #f0f0f0;
}

.bank-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.bank-card-header h2 {
    color: #003366;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0;
}

.bank-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.detail-item:hover {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin: 0 -1rem;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: bold;
    color: #003366;
    font-size: 1.1rem;
    min-width: 140px;
}

.detail-value {
    color: #444;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
    word-break: break-all;
}
main {
    padding: 2rem 0;
}
#services h2, #about h2, #contact h2 {
    color: #003366;
    margin-bottom: 1rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    background: #e0e0e0;
    border-radius: 12px;
}
.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 2rem 1rem;
    text-align: center;
    transition: box-shadow 0.2s;
    border: 1px solid #ccc;
}
.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}
#about, #contact {
    margin-top: 3rem;
    background: #fff;
    border-radius: 8px;
    padding: 2rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}
input, textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
button[type="submit"] {
    background: #003366;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
button[type="submit"]:hover {
    background: #ffcc00;
    color: #003366;
}
footer {
    background: #444;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.95rem;
}
.home-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    background: linear-gradient(90deg, #888 60%, #bdbdbd 100%);
    color: #fff;
    border-radius: 0 0 16px 16px;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}
.home-content {
    text-align: center;
    max-width: 600px;
}
.home-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.home-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.cta-btn {
    display: inline-block;
    background: #bdbdbd;
    color: #222;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: #444;
    color: #fff;
    border: 1px solid #ffcc00;
}
.resources-list {
    list-style: disc inside;
    margin: 1.5rem 0 0 1rem;
    padding: 0;
}
.resources-list li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}
.resources-list a {
    color: #444;
    text-decoration: underline;
    transition: color 0.2s;
}
.resources-list a:hover {
    color: #888;
}
.company-overview {
    background: #eaeaea;
    border-left: 5px solid #888;
    padding: 2rem 1.5rem 1.5rem 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.company-overview p {
    font-size: 1.13rem;
    margin-bottom: 1.1rem;
    color: #222;
}
.company-overview .tagline {
    font-size: 1.18rem;
    color: #444;
    margin-top: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-align: right;
}
.slideshow-container {
    position: relative;
    width: 70vw;
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0 0 16px 16px;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    filter: none;
}
.fade {
    animation: fadeEffect 1s;
}
@keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    padding: 0;
    margin-top: -24px;
    color: #fff;
    font-weight: bold;
    font-size: 36px;
    border-radius: 50%;
    user-select: none;
    background: rgba(0,0,0,0.35);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    transition: background 0.2s, border 0.2s;
}
.next {
    right: 18px;
    border-radius: 50%;
}
.prev {
    left: 18px;
    border-radius: 50%;
}
.prev:hover, .next:hover {
    background: #ffcc00;
    color: #003366;
    border: 2px solid #ffcc00;
}
.slideshow-cta {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 1.2rem;
    padding: 1rem 2.2rem;
    background: #bdbdbd;
    color: #222;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
}
.slideshow-cta:hover {
    background: #444;
    color: #fff;
}
.slideshow-container::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0));
    border-radius: 0 0 16px 16px;
    z-index: 1;
    pointer-events: none;
}
.slideshow-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.slideshow-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    border: 2px solid #003366;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
}
.slideshow-dot.active {
    background: #ffcc00;
    opacity: 1;
    border-color: #ffcc00;
}
.topbar {
    background: #003366;
    color: #fff;
    font-size: 1rem;
    padding: 0.4rem 0;
}
.topbar-flex {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5rem;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1rem;
    white-space: nowrap;
}
@media (max-width: 700px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #555;
        margin-top: 0.5rem;
        border-radius: 4px;
        box-shadow: none;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .dropdown-toggle::after {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    .home-section {
        min-height: 40vh;
        padding: 2rem 0;
    }
    .home-content h2 {
        font-size: 2rem;
    }
    .slideshow-container {
        height: 260px;
        width: 100vw;
        max-width: 100vw;
        border-radius: 0;
    }
    .slide img {
        height: 260px;
        width: 100vw;
        border-radius: 0;
        object-position: center;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        image-rendering: pixelated;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
        filter: brightness(1.05) contrast(1.1) saturate(1.1);
    }
    .slideshow-dots {
        bottom: 8px;
    }
    .prev, .next {
        width: 32px;
        height: 32px;
        font-size: 22px;
        margin-top: -16px;
    }
    .slideshow-cta {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
        bottom: 16px;
    }
    .topbar-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .topbar {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }
    
    /* Mobile service page styles */
    .service-hero {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-intro {
        font-size: 1rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-detail {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    /* Mobile banking details styles */
    .banking-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bank-card {
        padding: 1.5rem;
    }
    
    .bank-icon {
        font-size: 2.5rem;
    }
    
    .bank-card h3 {
        font-size: 1.3rem;
    }
    
    .banking-section h2 {
        font-size: 1.5rem;
    }
    
    /* Mobile banking home styles */
    .banking-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .banking-hero-section p {
        font-size: 1.1rem;
    }
    
    .banking-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bank-card-home {
        padding: 2rem;
    }
    
    .bank-icon-large {
        font-size: 4rem;
    }
    
    .bank-card-header h2 {
        font-size: 1.8rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-label {
        min-width: auto;
        font-size: 1rem;
    }
    
    .detail-value {
        text-align: left;
        font-size: 1rem;
    }

    /* Mobile testimonials styles */
    .testimonials-section {
        margin: 2rem 0;
        padding: 1rem 0;
    }

    .testimonials-section h2 {
        font-size: 1.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }

    .rating {
        font-size: 1rem;
    }
}

/* Testimonials Styles */
.testimonials-section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.testimonials-section h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #34ccff;
    flex: 0 1 350px;
    min-width: 300px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #34ccff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.author-info h4 {
    color: #003366;
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
}

#testimonials {
    margin: 4rem 0;
    padding: 2rem 0;
}

#testimonials h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 3rem;
    font-size: 2.5rem;
} 

/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: none;
    text-decoration: none;
}
.whatsapp-widget:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    transform: scale(1.08);
}
.whatsapp-icon {
    width: 38px;
    height: 38px;
    display: block;
}
@media (max-width: 700px) {
    .whatsapp-widget {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
} 