@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c8d6e5;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* front side */

.container > .front-side {
    background-color: #fff;
    height: 650px;
    margin-right: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
}

.container > .front-side > .header {
    background-color: #f36c10;
    padding: 20px;
    color: #fff;
    width: 100%;
    text-align: center;
}

.img-section {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.img-section > img {
    width: 113px;
    border-radius: 50%;
    border: 7px solid #f36c10;
}

.details {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
}

.details > p {
    margin-bottom: 5px;
    font-weight: 600;
}

.footer {
    background-color: #f36c10;
    padding: 20px;
    color: #fff;
    margin-top: 15px;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.skills {
    margin-bottom: 10px;
}

.skills > ul {
    display: flex;
    justify-content: center;
}

.skills > ul > li {
    list-style: none;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 50px;
    margin-left: 10px;
    margin-right: 10px;
}

/* Container jo icons ko card ke bottom mein push karega */
.social-container-main {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5px; /* Card details ke niche gap dene ke liye */
    margin-bottom: 5px; /* Card details ke niche gap dene ke liye */
    position: relative; 
    z-index: 99;
}

/* Black Pill Shape */
.social-pill {
    background: #000;
    padding: 8px 20px;
    border-radius: 40px; /* Isse pill shape aayega */
    display: flex;
    gap: 12px; /* Icons ke beech ka space */
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5); /* Image jaisa shadow */
}

/* Icons styling */
.social-pill a i {
    font-size: 18px; /* Icon size thoda chota rakha hai taki card par fit aaye */
    transition: 0.3s;
}

.social-pill a i:hover {
    transform: scale(1.2);
}

.ss-btn{
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 50%;
    background-color: #fff;
    color: #000000;
}

.fs-btn{
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 80%;
    background-color: #0866ff;
    color: #fff;
    margin-right: 20px;
}

.ws-btn{
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 80%;
    background-color: #1abc9c;
    color: #fff;
    margin-right: 20px;
}

/* back side */

.container > .back-side {
    background-color: #fff;
    width: 515px;
    height: 650px;
    margin-right: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
}

.container > .back-side > .back-header {
    background-color: #f36c10;
    padding: 10px;
    color: #fff;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container > .back-side > .line {
    background-color: #f36c10;
    padding: 3px;
    margin-top: 6px;
    width: 100%;
}

.container > .back-side > .t-c {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.container > .back-side > .t-c > ul {
    padding: 20px;
}

.container > .back-side > .t-c > ul > li {
    list-style-type: square;
    font-size: 15px;
}

.container > .back-side > .t-c > ul > li::marker {
    color: #f36c10;
}

.container > .back-side > .qr-to-website {
    margin-top: 10px;
    margin-bottom: 10px;
}

.container > .back-side > .qr-to-website > .qr-img {
    width: 75px;
}

.container > .back-side > .all-dates {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container > .back-side > .first-back-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.container > .back-side > .first-back-footer > .logo-tag{
    width: 37%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.container > .back-side > .first-back-footer > .logo-tag > img {
    width: 50px;
}

.container > .back-side > .first-back-footer > .signature > img {
    width: 100px;
}

.container > .back-side > .back-footer {
    background-color: #f36c10;
    padding: 5px;
    margin-top: 6px;
    width: 100%;
}

.container > .back-side > .back-footer > span {
    font-size: 10px;
    color: #fff;
}

@media (max-width: 1170px) {
    .container {
        display: flex;
        flex-direction: column;
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .back-side {
        margin-top: 50px;
    }
}

@media (max-width: 635px) {
    .container > .back-side {
        display: none;
    }
}

@media (max-width: 605px) {
    .skills > ul {
        display: flex;
        flex-direction: column;
        gap: .6rem;
    }

    .container > .front-side {
        height: 900px;
    }

    .footer {
        height: 373.5px;
    }
}

@media (max-width: 535px) {
    .container {
        margin-left: 20px;
    }
}