    
/* ========== ROOT VARIABLES ========== */
:root {
    --primary-blue: #2563EB;
    --dark-navy: #0F172A;
    --accent-green: #22C55E;
    --light-bg: #F8FAFC;
    --text-dark: #111827;
    --text-light: #6B7280;
    --hover-blue: #1D4ED8;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.section {
    padding: 45px 0px;
}

/* ========== NAVIGATION ========== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark-navy) !important;
}

.brand-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    color: var(--text-light) !important;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ========== HERO SECTION ========== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 1) 50%, rgba(34, 197, 94, 0.05) 100%);
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.contact-info {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 1.125rem;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-blue);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--hover-blue);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-blue);
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    border: 2px solid var(--primary-blue);
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.hero-image-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

.hero-image-circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-initials {
    color: white;
    font-size: 6rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* ========== SECTION TITLES ========== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ========== ABOUT SECTION ========== */
#about {
    background-color: white;
}

.about-card {
    background-color: var(--light-bg);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary-blue);
}

.competencies-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.competency-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.competency-item i {
    color: var(--accent-green);
    font-size: 1.25rem;
}

/* ========== SKILLS SECTION ========== */
#skills {
    background: linear-gradient(180deg, white 0%, rgba(37, 99, 235, 0.05) 100%);
}

.skill-card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.skill-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.skill-icon.blue {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
}

.skill-icon.green {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.skill-icon.purple {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.skill-icon.red {
    background-color: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.skill-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.skill-card.blue h3 {
    color: var(--primary-blue);
}

.skill-card.green h3 {
    color: var(--accent-green);
}

.skill-card.purple h3 {
    color: #8B5CF6;
}

.skill-card.red h3 {
    color: #EF4444;
}

.skill-list {
    list-style: none;
    padding: 0;
}

.skill-list li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.skill-list li::before {
    content: '•';
    position: absolute;
    left: 0;
}

/* ========== EXPERIENCE SECTION ========== */
#experience {
    background-color: white;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--accent-green) 100%);
    transform: translateX(-50%);
}

.experience-card {
    position: relative;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, white 100%);
    border: 2px solid var(--primary-blue);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    width: calc(50% - 2rem);
    margin-left: calc(50% + 2rem);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 3rem;
    width: 24px;
    height: 24px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
    transform: translateX(-50%);
    z-index: 10;
}

.experience-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.experience-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.experience-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.25rem;
}

.experience-company {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.experience-duration {
    color: var(--text-light);
}

.responsibility-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.responsibility-item i {
    color: var(--accent-green);
    font-size: 1.125rem;
    margin-top: 0.25rem;
}

/* ========== PROJECTS SECTION ========== */
#projects {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, white 100%);
}

.project-card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.project-icon.green {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.project-icon.blue {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
}

.project-icon.purple {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.project-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.project-card.green h3 {
    color: var(--accent-green);
}

.project-card.blue h3 {
    color: var(--primary-blue);
}

.project-card.purple h3 {
    color: #8B5CF6;
}

.project-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.project-achievements {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-achievements li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.project-achievements li::before {
    content: '✓';
    color: var(--accent-green);
}

.btn-project {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 2px solid;
    background-color: transparent;
    font-weight: 600;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-project.green {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.btn-project.green:hover {
    background-color: var(--accent-green);
    color: white;
}

.btn-project.blue {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-project.blue:hover {
    background-color: var(--primary-blue);
    color: white;
}

.btn-project.purple {
    border-color: #8B5CF6;
    color: #8B5CF6;
}

.btn-project.purple:hover {
    background-color: #8B5CF6;
    color: white;
}

/* ========== CERTIFICATIONS SECTION ========== */
#certifications {
    background-color: white;
}

.certification-card {
    background: linear-gradient(135deg, white 0%, rgba(249, 250, 251, 1) 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    text-align: center;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.certification-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.certification-icon.orange {
    background-color: rgba(255, 122, 89, 0.1);
    color: #FF7A59;
}

.certification-icon.blue {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
}

.certification-icon.yellow {
    background-color: rgba(242, 201, 76, 0.1);
    color: #F2C94C;
}

.certification-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.certification-card.orange h3 {
    color: #FF7A59;
}

.certification-card.blue h3 {
    color: var(--primary-blue);
}

.certification-card.yellow h3 {
    color: #F2C94C;
}

.certification-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.certification-link {
    color: var(--primary-blue);
    font-size: 0.9rem;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.certification-link:hover {
    text-decoration: underline;
}

/* ========== ACHIEVEMENTS SECTION ========== */
#achievements {
    background: linear-gradient(180deg, white 0%, rgba(37, 99, 235, 0.05) 100%);
}

.achievement-card {
    background-color: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.achievement-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.achievement-icon.green {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.achievement-icon.blue {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
}

.achievement-icon.purple {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.achievement-stat {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.achievement-stat.green {
    color: var(--accent-green);
}

.achievement-stat.blue {
    color: var(--primary-blue);
}

.achievement-stat.purple {
    color: #8B5CF6;
}

.achievement-label {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* ========== SEO APPROACH SECTION ========== */
#approach {
    background-color: white;
}

.approach-card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-number-bg {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 5rem;
    font-weight: 700;
    opacity: 0.1;
    line-height: 1;
    padding: 1rem;
}

.approach-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.approach-icon.blue {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
}

.approach-icon.green {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.approach-icon.purple {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.approach-icon.red {
    background-color: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.step-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-badge.blue {
    background-color: var(--primary-blue);
}

.step-badge.green {
    background-color: var(--accent-green);
}

.step-badge.purple {
    background-color: #8B5CF6;
}

.step-badge.red {
    background-color: #EF4444;
}

.approach-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.approach-card.blue h3 {
    color: var(--primary-blue);
}

.approach-card.green h3 {
    color: var(--accent-green);
}

.approach-card.purple h3 {
    color: #8B5CF6;
}

.approach-card.red h3 {
    color: #EF4444;
}

.approach-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
}

/* ========== CONTACT SECTION ========== */
#contact {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, white 100%);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--hover-blue);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.divider span {
    padding: 0 1rem;
    color: var(--text-light);
}

.btn-linkedin {
    width: 100%;
    background-color: transparent;
    color: #0077B5;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #0077B5;
    font-weight: 600;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-linkedin:hover {
    background-color: #0077B5;
    color: white;
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--dark-navy);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    text-align: center;
}

.footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-heart {
    color: #EF4444;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .experience-card {
        width: 100%;
        margin-left: 60px;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-container {
        width: 250px;
        height: 250px;
    }
    
    .hero-initials {
        font-size: 4rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    .experience-card {
        margin-left: 50px;
    }
}

.br-100{
    border-radius: 100%;
}

.side-sticky {
    display: block !important;
    width: 44px;
    height: 44px;
    position: fixed;
    text-align: center;
    z-index: 999;
    font-size: 0px;
    line-height: 0;
    border-radius: 6px;
}
.side-sticky i {
    font-size: 28px;
    padding: 10px;
    margin-top: -3px;
    color: #fff;
}
.call-icon i{
    font-size: 24px;
    padding: 12px;
}
.call-icon {
    background-color: #074eef;
    right: 0px;
    bottom: 180px;
}
.whatsapp-icon {
    background-color: #05f321;
    right: 0px;
    bottom: 229px;
}
