* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

.universal-button {
    cursor: pointer;
    background-color: #FD6E0A;
    color: aliceblue;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;

}

.Outline {
    background-color: transparent;
    color: #FD6E0A;
    border: 1px solid #FD6E0A;
    padding: 7.5px 15px;
    border-radius: 5px;
    font-size: 16px;
}

.Outline:hover {
    cursor: pointer;
    color: white;
    background-color: #FD6E0A;
}

.h {
    color: #FD6E0A;
}

/* navigation style */
.navigation {
    display: flex;
    padding: 10px 100px;
    justify-content: space-between;
    background-color: #FFF8F3;
    border: 10;
}

.navigation ul {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    list-style: none;
    align-items: center;
}

.Hero {
    display: flex;
    background-color: #FFF8F3;
    justify-content: space-between;
    padding-left: 100px;
}

.hero-text {
    flex: 1;
    align-content: center;
    text-align: left;
}

.greet {
    font-size: 40px;
    color: rgb(68, 65, 65);
    margin-bottom: 5px;
}

.My-name {
    font-size: 50px;
    margin-bottom: 10px;
}

.hero-details {
    color: rgb(68, 65, 65);
    margin-bottom: 20px;
}

.hero-image {
    background-image: url('./images/Group\ 12.png');
}

.about-box-parent {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 50px 50px;
    border-radius: 15px;
    height: 200px;
    background-color: #FFF8F3;


}

.about-text {
    text-align: center;
    margin-top: 10px;
    max-width: 1080px;
    color: rgb(68, 65, 65);

}

.about {
    margin-top: 20px;
}

.about-box {
    margin: 30px;
    display: flex;
    justify-content: space-around;
    font-size: small;
}

.my-work-parent {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 50px;
}

.what {
    margin-bottom: 10px;
}

.what-i-do-parent {
    margin: 60px auto;
    text-align: center;
    max-width: 1080px;
}

.what-i-do-card-container {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    /* gap: 8px; */
}

.what-i-do-card-container .what-i-do-card {
    background-color: #FFF8F3;
    min-height: 250px;
    max-width: 200px;
    gap: 0px;
    padding: 8px;
    border-radius: 10px;
    text-align: left;
}

.what-i-do-card-container .what-i-do-card h2 {
    font-size: large;
    padding-bottom: 20px;

}

.what-i-do-card-container .what-i-do-card p {
    color: #757575;
    font-size: 16px;
}

.logo {
    padding: 10px;
    height: auto;
    width: 50px;
}

/* পুরো সেকশনের ব্যাকগ্রাউন্ড ও স্পেস */
.resume-section {
    padding: 80px 100px;
    background-color: #ffffff;
    /* আপনার প্রয়োজন অনুযায়ী ব্যাকগ্রাউন্ড কালার দিতে পারেন */
}

/* মেইন টাইটেল সেন্টারে রাখার জন্য */
.resume-main-title {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
}

/* দুই কলাম পাশাপাশি রাখার জন্য মেইন কন্টেইনার */
.resume-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    /* দুই কলামের মাঝখানের গ্যাপ */
    max-width: 1140px;
    margin: 0 auto;
}

/* প্রতিটি কলামের উইডথ সমান রাখা */
.resume-column {
    flex: 1;
}

/* My Education / My Experience হেডিং স্টাইল */
.column-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #444;
}

/* প্রতিটি ব্লকের ভেতরের কন্টেন্ট স্টাইল */
.resume-item {
    margin-bottom: 25px;
}

.item-title {
    font-size: 20px;
    font-weight: bold;
    color: #444;
    margin-bottom: 8px;
}

.item-sub {
    font-size: 16px;
    color: #757575;
    margin-bottom: 12px;
}

.item-desc {
    font-size: 14px;
    color: #757575;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* মাঝখানের হালকা দাগের জন্য (Divider) */
.item-divider {
    border: none;
    border-top: 1px solid #E8E8E8;
    margin-top: 10px;
}

.Download {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Download-button {
    border-radius: 20px;
    font-size: 16px;
}

.my-amazing-parent {
    text-align: center;
}

.gallery {
    margin-top: 20px;
    display: grid;
    justify-content: center;
    margin: 200px;
    margin-top: 15px;
    margin-bottom: 15px;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    grid-template-areas:
        "one two three"
        "four two six"
        "four five six";
}

.gallery img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.box-1 {
    grid-area: one;
}

.box-2 {
    grid-area: two;
}

.box-3 {
    grid-area: three;
}

.box-4 {
    grid-area: four;
}

.box-5 {
    grid-area: five;
}

.box-6 {
    grid-area: six;
}

footer {
    max-width: 1140px;
    margin: 80px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    background: #fff8f3;
    padding: 80px 100px;
    border-radius: 12px;
    align-items: start;
}

.footer-left h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.footer-left p {
    margin-bottom: 30px;
    color: #757575;
    line-height: 1.7;
    font-size: 16px;
}

.footer-icon-parent span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-right: 15px;
    border-radius: 50%;
    background: #fff;
    color: #fd6e0a;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.footer-icon-parent span:hover {
    background: #fd6e0a;
    color: white;
    transform: translateY(-3px);
}

footer form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

footer form h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
}

footer form input,
footer form textarea {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
    background-color: #fafafa;
    outline: none;
    font-size: 15px;
    color: #333;
    font-family: inherit;
    transition: 0.3s;
}

footer form input:focus,
footer form textarea:focus {
    border-color: #fd6e0a;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(253, 110, 10, 0.08);
}

footer form textarea {
    min-height: 140px;
    resize: vertical;
}

footer form button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #fd6e0a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

footer form button:hover {
    background-color: #e05d05;
}