/* ==========================================
   FineIT Digital Business Card
   style.css - Part 1
========================================== */

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#071426;

    color:#ffffff;

    overflow-x:hidden;

    min-height:100vh;

}

/* ==========================================
   ROOT VARIABLES
========================================== */

:root{

    --primary:#0d6efd;

    --secondary:#00c6ff;

    --accent:#00e5ff;

    --dark:#071426;

    --card:#0f2038;

    --white:#ffffff;

    --text:#cfd8e3;

    --border:rgba(255,255,255,.10);

    --glass:rgba(255,255,255,.06);

    --shadow:0 20px 45px rgba(0,0,0,.30);

    --radius:24px;

    --transition:.35s ease;

}

/* ==========================================
   BODY BACKGROUND
========================================== */

body::before{

    content:"";

    position:fixed;

    width:450px;

    height:450px;

    border-radius:50%;

    background:#00c6ff;

    top:-150px;

    left:-150px;

    filter:blur(170px);

    opacity:.18;

    z-index:-2;

}

body::after{

    content:"";

    position:fixed;

    width:420px;

    height:420px;

    border-radius:50%;

    background:#0d6efd;

    right:-140px;

    bottom:-140px;

    filter:blur(170px);

    opacity:.18;

    z-index:-2;

}

/* ==========================================
   LOADER
========================================== */

.loader{

    position:fixed;

    inset:0;

    background:#071426;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:.5s;

}

.loader.hide{

    opacity:0;

    visibility:hidden;

}

.spinner{

    width:60px;

    height:60px;

    border:5px solid rgba(255,255,255,.15);

    border-top:5px solid var(--secondary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/* ==========================================
   CONTAINER
========================================== */

.container{

    width:100%;

    max-width:460px;

    margin:40px auto;

    padding:15px;

}

/* ==========================================
   DIGITAL CARD
========================================== */

.digital-card{

    background:var(--glass);

    backdrop-filter:blur(16px);

    border:1px solid var(--border);

    border-radius:32px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

/* ==========================================
   HERO
========================================== */

.hero{

    width:100%;

    height:210px;

    overflow:hidden;

}

.hero img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/* ==========================================
   PROFILE
========================================== */

.profile{

    padding:30px;

    text-align:center;

    margin-top:-70px;

    position:relative;

}

.company-logo{

    width:90px;

    height:90px;

    background:#ffffff;

    border-radius:22px;

    margin:0 auto 20px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:var(--shadow);

}

.company-logo img{

    width:75%;

}

.profile-image{

    width:140px;

    height:140px;

    margin:0 auto 25px;

    border-radius:50%;

    border:5px solid #ffffff;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.profile-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.profile h1{

    font-size:32px;

    font-weight:700;

    margin-bottom:10px;

}

.designation{

    color:var(--secondary);

    font-weight:600;

    margin-bottom:8px;

}

.company{

    color:var(--text);

    margin-bottom:20px;

}

/* ==========================================
   VERIFIED
========================================== */

.verified{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(0,198,255,.12);

    border:1px solid rgba(0,198,255,.30);

    color:#8be9ff;

    font-size:14px;

}

.verified i{

    color:#00e5ff;

}

/* ==========================================
   ONLINE STATUS
========================================== */

.online-status{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:18px;

    color:#dfe9f5;

    font-size:14px;

}

.online-status span{

    width:12px;

    height:12px;

    background:#00ff7f;

    border-radius:50%;

    animation:pulse 1.8s infinite;

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(0,255,127,.6);

    }

    70%{

        box-shadow:0 0 0 12px rgba(0,255,127,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(0,255,127,0);

    }

}

/* ==========================================
   DIVIDER
========================================== */

.divider{

    width:100%;

    height:1px;

    background:rgba(255,255,255,.08);

}

/* ==========================================
   FADE ANIMATION
========================================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}/* ==========================================
   style.css - Part 2
   Contact Section & Office Hours
========================================== */

/* ==========================
   SECTION TITLE
========================== */

.section-title{

    text-align:center;

    font-size:24px;

    font-weight:700;

    margin-bottom:25px;

    color:var(--white);

    position:relative;

}

.section-title::after{

    content:"";

    display:block;

    width:70px;

    height:4px;

    margin:12px auto 0;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

}

/* ==========================
   CONTACT SECTION
========================== */

.contact-section{

    padding:30px;

    display:flex;

    flex-direction:column;

    gap:18px;

}

/* ==========================
   CONTACT CARD
========================== */

.contact-card{

    display:flex;

    align-items:center;

    gap:18px;

    text-decoration:none;

    background:var(--glass);

    border:1px solid var(--border);

    border-radius:20px;

    padding:18px;

    transition:var(--transition);

}

.contact-card:hover{

    transform:translateY(-6px);

    border-color:rgba(0,198,255,.35);

    box-shadow:0 18px 35px rgba(0,198,255,.12);

}

/* ==========================
   CONTACT ICON
========================== */

.contact-icon{

    width:58px;

    height:58px;

    min-width:58px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:22px;

}

.contact-info{

    flex:1;

}

.contact-info h4{

    color:#fff;

    font-size:17px;

    margin-bottom:6px;

    font-weight:600;

}

.contact-info p{

    color:var(--text);

    font-size:14px;

    line-height:1.6;

}

.contact-arrow{

    color:rgba(255,255,255,.40);

    transition:var(--transition);

}

.contact-card:hover .contact-arrow{

    color:var(--secondary);

    transform:translateX(5px);

}

/* ==========================
   OFFICE HOURS
========================== */

.office-hours{

    padding:30px;

}

.office-hours h3{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-bottom:22px;

    color:#fff;

    font-size:22px;

}

.office-hours h3 i{

    color:var(--secondary);

}

.office-hours ul{

    list-style:none;

}

.office-hours li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 18px;

    margin-bottom:12px;

    border-radius:18px;

    background:var(--glass);

    border:1px solid var(--border);

    color:var(--text);

    transition:var(--transition);

}

.office-hours li:hover{

    transform:translateX(6px);

    border-color:rgba(0,198,255,.30);

}

.available{

    color:#00ff9d;

    font-weight:600;

}

.closed{

    color:#ff6b6b;

    font-weight:600;

}

/* ==========================
   CONTACT CARD COLORS
========================== */

.contact-card:nth-child(1) .contact-icon{

    background:linear-gradient(135deg,#0d6efd,#3fa4ff);

}

.contact-card:nth-child(2) .contact-icon{

    background:linear-gradient(135deg,#6f42c1,#9b6dff);

}

.contact-card:nth-child(3) .contact-icon{

    background:linear-gradient(135deg,#25d366,#0fa958);

}

.contact-card:nth-child(4) .contact-icon{

    background:linear-gradient(135deg,#ff9800,#ff5722);

}

.contact-card:nth-child(5) .contact-icon{

    background:linear-gradient(135deg,#00bcd4,#2196f3);

}

.contact-card:nth-child(6) .contact-icon{

    background:linear-gradient(135deg,#f44336,#ff6b81);

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px){

    .contact-section{

        padding:22px;

    }

    .office-hours{

        padding:22px;

    }

    .contact-card{

        padding:16px;

    }

    .contact-icon{

        width:52px;

        height:52px;

        min-width:52px;

        font-size:20px;

    }

    .contact-info h4{

        font-size:16px;

    }

    .contact-info p{

        font-size:13px;

    }

}

@media(max-width:480px){

    .section-title{

        font-size:22px;

    }

    .contact-card{

        gap:14px;

    }

    .office-hours li{

        flex-direction:column;

        align-items:flex-start;

        gap:8px;

    }

}/* ==========================================
   style.css - Part 3
   Action Buttons • Services • Skills • Stats
========================================== */

/* ==========================
   ACTION SECTION
========================== */

.action-section{

    padding:30px;

}

/* ==========================
   ACTION BUTTONS
========================== */

.action-buttons{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.action-btn{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:12px;

    text-decoration:none;

    color:#ffffff;

    min-height:120px;

    border-radius:22px;

    background:var(--glass);

    border:1px solid var(--border);

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.action-btn:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,198,255,.18);

}

.action-btn i{

    font-size:34px;

}

.action-btn span{

    font-size:15px;

    font-weight:600;

}

/* Individual Colors */

.call-btn{

    background:linear-gradient(135deg,#0d6efd,#4ea1ff);

}

.whatsapp-btn{

    background:linear-gradient(135deg,#25d366,#128c7e);

}

.email-btn{

    background:linear-gradient(135deg,#ff9800,#ff5722);

}

.save-btn{

    background:linear-gradient(135deg,#7b61ff,#5b3df5);

}

/* ==========================
   SERVICES
========================== */

.services{

    padding:30px;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.service-card{

    background:var(--glass);

    border:1px solid var(--border);

    border-radius:22px;

    padding:25px 18px;

    text-align:center;

    transition:var(--transition);

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:rgba(0,198,255,.30);

    box-shadow:0 20px 35px rgba(0,198,255,.15);

}

.service-card i{

    font-size:38px;

    color:var(--secondary);

    margin-bottom:18px;

}

.service-card h4{

    color:#ffffff;

    margin-bottom:10px;

    font-size:18px;

}

.service-card p{

    color:var(--text);

    font-size:14px;

    line-height:1.7;

}

/* ==========================
   SKILLS
========================== */

.skills{

    padding:30px;

}

.skill-tags{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:14px;

}

.skill-tags span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 20px;

    border-radius:50px;

    background:rgba(0,198,255,.10);

    border:1px solid rgba(0,198,255,.25);

    color:#8be9ff;

    font-size:14px;

    transition:var(--transition);

}

.skill-tags span:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#ffffff;

    transform:translateY(-5px);

}

/* ==========================
   STATS
========================== */

.stats{

    padding:30px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

}

.stat-card{

    background:var(--glass);

    border:1px solid var(--border);

    border-radius:22px;

    text-align:center;

    padding:25px 15px;

    transition:var(--transition);

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:rgba(0,198,255,.30);

    box-shadow:0 15px 30px rgba(0,198,255,.15);

}

.stat-card h2{

    color:var(--secondary);

    font-size:34px;

    font-weight:700;

    margin-bottom:10px;

}

.stat-card p{

    color:var(--text);

    font-size:14px;

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px){

    .action-section,
    .services,
    .skills,
    .stats{

        padding:22px;

    }

    .action-btn{

        min-height:105px;

    }

    .service-grid{

        gap:15px;

    }

}

@media(max-width:560px){

    .action-buttons{

        grid-template-columns:1fr;

    }

    .service-grid{

        grid-template-columns:1fr;

    }

    .stats{

        grid-template-columns:1fr;

    }

    .stat-card h2{

        font-size:30px;

    }

}/* ==========================================
   style.css - Part 4
   Social • Gallery • QR • Map • Testimonials
========================================== */

/* ==========================
   SOCIAL SECTION
========================== */

.social-section{

    padding:30px;

}

.social-icons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

}

.social-icons a{

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    border-radius:20px;

    color:#fff;

    font-size:24px;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.social-icons a:hover{

    transform:translateY(-8px) scale(1.08);

}

/* Brand Colors */

.facebook{

    background:#1877F2;

}

.instagram{

    background:linear-gradient(
        135deg,
        #833ab4,
        #fd1d1d,
        #fcb045
    );

}

.linkedin{

    background:#0077B5;

}

.youtube{

    background:#FF0000;

}

.twitter{

    background:#111111;

}

.whatsapp{

    background:#25D366;

}

/* ==========================
   GALLERY
========================== */

.gallery{

    padding:30px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.gallery-grid img{

    width:100%;

    height:180px;

    object-fit:cover;

    border-radius:20px;

    border:1px solid var(--border);

    transition:var(--transition);

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.04);

    box-shadow:0 18px 35px rgba(0,198,255,.18);

}

/* ==========================
   QR SECTION
========================== */

.qr-section{

    padding:30px;

    text-align:center;

}

.qr-card{

    display:inline-block;

    padding:25px;

    border-radius:24px;

    background:var(--glass);

    border:1px solid var(--border);

    transition:var(--transition);

}

.qr-card:hover{

    transform:translateY(-8px);

}

.qr-card img{

    width:220px;

    max-width:100%;

    border-radius:16px;

    background:#ffffff;

    padding:10px;

}

.qr-card p{

    margin-top:18px;

    color:var(--text);

    line-height:1.6;

}

/* ==========================
   MAP
========================== */

.map-section{

    padding:30px;

}

.map-section iframe{

    width:100%;

    height:280px;

    border:none;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

/* ==========================
   TESTIMONIALS
========================== */

.testimonials{

    padding:30px;

}

.testimonial-card{

    background:var(--glass);

    border:1px solid var(--border);

    border-radius:24px;

    padding:25px;

    margin-bottom:20px;

    transition:var(--transition);

}

.testimonial-card:last-child{

    margin-bottom:0;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    border-color:rgba(0,198,255,.30);

    box-shadow:0 20px 35px rgba(0,198,255,.15);

}

.testimonial-card i{

    font-size:34px;

    color:var(--secondary);

    margin-bottom:15px;

}

.testimonial-card p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:18px;

}

.testimonial-card h4{

    color:#ffffff;

    font-size:16px;

    font-weight:600;

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px){

    .social-section,
    .gallery,
    .qr-section,
    .map-section,
    .testimonials{

        padding:22px;

    }

    .gallery-grid img{

        height:160px;

    }

    .map-section iframe{

        height:240px;

    }

}

@media(max-width:560px){

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .social-icons a{

        width:58px;

        height:58px;

        font-size:21px;

    }

    .qr-card img{

        width:180px;

    }

}/* ==========================================
   style.css - Part 5
   Footer • Toast • Share Modal
========================================== */

/* ==========================
   FOOTER
========================== */

.footer{

    padding:40px 30px;

    text-align:center;

}

.footer-logo{

    width:90px;

    background:#ffffff;

    padding:12px;

    border-radius:20px;

    margin-bottom:20px;

    box-shadow:var(--shadow);

}

.footer h3{

    font-size:26px;

    margin-bottom:10px;

    color:var(--white);

}

.footer p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:10px;

}

/* ==========================
   TOAST
========================== */

.toast{

    position:fixed;

    left:50%;

    bottom:30px;

    transform:translateX(-50%) translateY(120px);

    width:340px;

    max-width:90%;

    background:#0d2038;

    border:1px solid rgba(255,255,255,.12);

    border-radius:20px;

    padding:16px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.30);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.toast.show{

    opacity:1;

    visibility:visible;

    transform:translateX(-50%) translateY(0);

}

.toast-icon{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:15px;

    background:linear-gradient(
        135deg,
        #00c853,
        #00e676
    );

    color:#ffffff;

    font-size:22px;

}

.toast-content{

    flex:1;

}

.toast-content h4{

    color:#ffffff;

    margin-bottom:4px;

    font-size:16px;

}

.toast-content p{

    color:var(--text);

    font-size:14px;

    line-height:1.5;

}

/* ==========================
   SHARE MODAL
========================== */

.share-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.70);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9998;

}

.share-modal.active{

    opacity:1;

    visibility:visible;

}

.share-box{

    width:92%;

    max-width:420px;

    background:#0f2038;

    border-radius:28px;

    padding:35px 25px;

    position:relative;

    border:1px solid rgba(255,255,255,.10);

    text-align:center;

    animation:modalUp .35s ease;

}

@keyframes modalUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.close-share{

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:rgba(255,255,255,.08);

    color:#ffffff;

    transition:var(--transition);

}

.close-share:hover{

    background:#ff4d4d;

}

.share-box h2{

    color:#ffffff;

    margin-bottom:30px;

    font-size:24px;

}

/* ==========================
   SHARE ICONS
========================== */

.share-icons{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:15px;

}

.share-icons a{

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    border-radius:18px;

    background:rgba(255,255,255,.06);

    color:#ffffff;

    font-size:22px;

    transition:var(--transition);

}

.share-icons a:hover{

    transform:translateY(-6px);

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

/* ==========================
   HIDDEN ELEMENTS
========================== */

#downloadVcf,
#qrCanvas{

    display:none;

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:560px){

    .footer{

        padding:30px 20px;

    }

    .footer-logo{

        width:75px;

    }

    .share-icons{

        grid-template-columns:repeat(3,1fr);

        justify-items:center;

    }

    .share-icons a{

        width:54px;

        height:54px;

        font-size:20px;

    }

}/* ==========================================
   style.css - Part 6 (Final)
   Theme • Back To Top • Utilities • Responsive
========================================== */

/* ==========================
   THEME TOGGLE
========================== */

.theme-toggle{

    position:fixed;

    right:25px;

    bottom:95px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#ffffff;

    font-size:22px;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transition:var(--transition);

    z-index:999;

}

.theme-toggle:hover{

    transform:translateY(-6px) rotate(15deg);

}

/* ==========================
   BACK TO TOP
========================== */

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    text-decoration:none;

    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    color:#ffffff;

    font-size:20px;

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:999;

    box-shadow:0 12px 30px rgba(0,198,255,.25);

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-6px);

}

/* ==========================
   LIGHT THEME
========================== */

body.light{

    background:#f5f7fb;

    color:#1f2937;

}

body.light::before,
body.light::after{

    opacity:.08;

}

body.light .digital-card{

    background:#ffffff;

    border:1px solid #e5e7eb;

}

body.light .profile h1,
body.light .section-title,
body.light .footer h3,
body.light .contact-info h4,
body.light .office-hours h3,
body.light .service-card h4,
body.light .testimonial-card h4{

    color:#1f2937;

}

body.light .company,
body.light .footer p,
body.light .contact-info p,
body.light .office-hours li,
body.light .service-card p,
body.light .testimonial-card p{

    color:#6b7280;

}

body.light .contact-card,
body.light .office-hours li,
body.light .service-card,
body.light .stat-card,
body.light .testimonial-card,
body.light .qr-card{

    background:#f9fafb;

    border-color:#e5e7eb;

}

body.light .share-box{

    background:#ffffff;

}

body.light .toast{

    background:#ffffff;

}

body.light .close-share{

    background:#f3f4f6;

    color:#1f2937;

}

/* ==========================
   TEXT SELECTION
========================== */

::selection{

    background:var(--secondary);

    color:#ffffff;

}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#081221;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        180deg,
        var(--primary),
        var(--secondary)
    );

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#0d6efd;

}

/* Firefox */

html{

    scrollbar-width:thin;

    scrollbar-color:#00c6ff #081221;

}

/* ==========================
   IMAGE DEFAULT
========================== */

img{

    max-width:100%;

    display:block;

}

/* ==========================
   LINK DEFAULT
========================== */

a{

    -webkit-tap-highlight-color:transparent;

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px){

    .container{

        margin:20px auto;

        padding:12px;

    }

    .theme-toggle,
    .back-to-top{

        width:52px;

        height:52px;

        right:18px;

    }

    .theme-toggle{

        bottom:90px;

    }

    .back-to-top{

        bottom:20px;

    }

}

@media(max-width:480px){

    .profile{

        padding:25px 20px;

    }

    .profile-image{

        width:120px;

        height:120px;

    }

    .company-logo{

        width:75px;

        height:75px;

    }

    .profile h1{

        font-size:28px;

    }

    .designation{

        font-size:15px;

    }

    .company{

        font-size:14px;

    }

}

/* ==========================
   PRINT
========================== */

@media print{

    .theme-toggle,
    .back-to-top,
    .loader{

        display:none !important;

    }

    body{

        background:#ffffff;

    }

    .digital-card{

        box-shadow:none;

        border:1px solid #cccccc;

    }

}