/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

/* Apply Roboto font to all <p> elements */
p {
    font-family: 'Roboto', sans-serif;
}

/* Apply Poppins font to all heading tags */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Default Navbar (At the Top) */
.header {
    position: sticky;
    top: 0;
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 16px 20px;
    box-shadow: none; /* Hide shadow initially */
    z-index: 11;
    transition: all 0.3s ease-in-out; /* Smooth transition for shadow */
}

/* Logo and Name */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}

.logo {
    width: 100px;
    height: 50px;
}

.logo-container .a {
    transition: all 0.3s ease-in-out;
}

.logo-container .a:hover {
    color: #007bff;
    transform: translate(0, -10px);
}

.hamb-menu {
    display: none;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease-in-out;
    list-style: none;
}
.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #00ccff;
    font-size: 18px;
    padding: 10px 5px;
    transition: background-color 0.3s ease;
}

.nav-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #007bff;
    padding: 6px 12px;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    color: #007bff;
}
/* Dropdown Menu */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-toggle {
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 500;
    color: #26d4ff;
    cursor: pointer;
}

.dropdown-menu {
    margin-top: 25px;
    position: absolute;
    top: 100%;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    /* display: none; */
    visibility: hidden;
    /* pointer-events: none; */
    flex-direction: column;
    min-width: 150px;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(-5px);
    z-index: 1000; /* Ensure it stays above other elements */
    transition: color 3s ease-in-out;
    right: 0; /* Aligns the dropdown to the right edge of the parent */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: visibility 0.3s ease-in-out;
}

.dropdown-menu li {
    padding: 8px 15px;
    list-style: none; /* Remove bullet points */
}

.dropdown:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    color: #007bff;
    visibility: visible;
    transition: all 0.3s ease-in, transform 0.3s ease-out;
}

.dropdown-menu:hover {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    color: #007bff;
    visibility: visible;
    transition: all 3s ease-in-out;
}

/* Scroll Effect: Move Navbar to Full Width & Align Items */
.header.scrolled  {
    width: 100%;
    left: 0;
    border-radius: 0;
    padding: 10px 40px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Move Items to the Right & Logo to the Left */
.logo-container.scrolled {
    margin-left: 0;
}

.nav-links.scrolled {
    margin-left: auto;
}

/* Main Content Styling */
.content {
    padding-top: 80px; /* To prevent content from going under the navbar */
}

.section {
    padding: 20px;
    margin-bottom: 20px;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #34495e;
    position: relative;
}

.section .education h2::after {
    content: "";
    left: 0;
    left: 0px;
    bottom: -31px;
    width: 100px;
    height: 2px;
    background: #e45447;
}

.section p {
    font-size: 18px;
    color: #7f8c8d;
}

.wlc-blocx {
    display: flex;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.wlc-container{
    margin-left: 100px;
    text-align: left;
}

.wlc-container .speech-bubble {
    background-color: #84a6d6;
    color: white;
    padding: 18px 18px;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    font-size: 16px;
}

.wlc-container .speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 10px;
    border-width: 10px;
    border-style: solid;
    border-color: #84a6d6 transparent transparent transparent;
}

.wlc-container h1 {
    font-size: 45px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 30px;
}

.wlc-container .red {
    color: #d9534f;
}

.wlc-container .blue {
    color: #7c9fd6;
}

.wlc-container p {
    font-size: 30px;
    color: #666;
    margin: 0 0 50px;
}

.wlc-container .btn {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    width: 200px; /* Set a fixed width for all buttons */
    text-align: center; /* Center the text inside the button */
    margin-bottom: 110px;
}

.wlc-container .btn:hover {
    background-color: #0177fd;
}

.giffy, .wlc-container {
    flex: 1; 
}

.giffy {
    margin-bottom: 75px;
}

.scroll-container {
    position: absolute;
    max-width: 1300px;
    width: calc(100vw - 300px); /* Ensures margin of 150px on left & right */
    left: 50%;
    transform: translateX(-50%) translateY(-50%); /* Centers and moves up */
    overflow: hidden; /* Hides scrollbar */
    white-space: nowrap;
    padding: 35px 0;
    z-index: 2;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    backdrop-filter: blur(5px); /* Glass effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    user-select: none; /* Prevents selection */
}

.scroll-content {
    display: flex;
    gap: 80px; /* Space between images */
    animation: auto 10s linear infinite; /* Auto-scroll effect */
}

.scroll-content img {
    height: 30px; /* Adjust as needed */
    border-radius: 2px;
    object-fit: cover;
    filter: grayscale(0%); /* Makes images grayscale */
    transition: transform 0.3s ease-in-out;
    user-select: none;
    pointer-events: none;
    margin-left: 25px; 
}

/* Removes grayscale on hover */
.scroll-content img:hover {
    filter: grayscale(100%) !important;
}

/* Keyframes for smooth infinite auto-scrolling */
@keyframes autoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves half the content width */
}

#about {
    background-color: #e6f3f7;
}

.centre-it {
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.ab-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;  /* Ensures a 30px gap between .ab-left and .ab-right */
    margin-top: 50px;
    margin: 100px auto; /* Centers the container */
}

.ab-left, .ab-right {
    flex: 1;  /* Ensures both divs take equal space */
}

.ab-left img {
    width: 100%;  /* Ensures the image scales properly */
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    max-width: 400px; /* Limits image size */
    margin-left: 100px;
    user-select: none;
    pointer-events: none;
}

.ab-right * {
    margin-right: 100px;
}

.ab-container .ab-right .ab-button {
    margin-top: 30px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid #3498db;
    box-shadow: none;
    text-shadow: none;
    font-weight: bold;
    width: 200px; /* Set a fixed width for all buttons */
    text-align: center; /* Center the text inside the button */
}

.ab-container .ab-right .ab-button:hover {
    background: #3498db;
}

#education {
    background-color: #ffff;
}


#education h2 {
    margin-top: 70px;
    margin-left: 50px;
    font-size: 48px;
    color: #2c3e50;
    position: relative;
    font-family: poppins, sans-serif;
    font-weight: 700;
}

#education p {
    margin-left: 50px;
    font-size: 15px;
    text-align: left;
    color: #2c3e50;
}

.cent-container {
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.ee-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    max-width: 90%;
    width: 100%;
    margin: 100px auto;
}

.job-box {
    background-color: #e3edf7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    padding: 40px 30px;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.job-box p{
    font-family: roboto, sans-serif;
    margin-top: 0;
    margin-bottom: 1rem;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    margin-left: 0px !important;
}

*, ::after, ::before {
    box-sizing: border-box;
}

.job-box:hover {
    background-color: rgb(144, 172, 209);
    color: #ffffff !important;
    transform: scale(1.05);
}

.job-box:hover p {
    color: #ffffff !important;
}

.job-top {
    display: -ms-flexbox !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
}

.top-left{
    flex: 1;
    font-family: poppins, sans-serif !important;
    font-size: 18px;
}
.job-box .top-left h4 {
    font-size: 21px;
    font-weight: 700;
    transition: 0.3s;
}

.job-box .top-left h5 {
    font-size: 15px;
    font-weight: 501;
    transition: 0.3s;
}

.top-right{
    margin-left: 0px;
    font-family: roboto, sans-serif !important;
}

.ee-button {
    background: #feffff;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid rgb(144, 172, 209);
    box-shadow: none;
    text-shadow: none;
    font-weight: bold;
}

#projects {
    background-color: #e6f3f7;
}

.proj-top h2 {
    margin-top: 70px;
    margin-left: 70px;
    font-size: 48px;
    color: #2c3e50;
    position: relative;
    font-family: poppins, sans-serif;
    font-weight: 700;
}

.proj-top p {
    margin-left: 70px;
    font-size: 15px;
    text-align: left;
    color: #2c3e50;
    padding-bottom: 85px;
}

/* Grid Layout for Certificates and Projects */
.proj-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
    grid-gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-left: 70px;
}

.card {
    width: 333px;
    aspect-ratio: 1 / 0.7;
    border-radius: 15px;
    position: relative; /* Ensure the parent element has position relative */
    cursor: pointer;
}

.card .image-box {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.card .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 90%;
    border-radius: 25px;
    transition: 0.5s ease-in-out;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid white;
    border-radius: inherit;
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.card:hover img{
    filter:  blur(5px) brightness(0.7);
}

.card:hover::after {
    opacity:1;
    inset: 20px;
}

.card-content {
    width: 80%;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 10;
}

.card-content p {
    margin-left: 5px !important;
    padding-bottom: 25px !important;
    color: #ffffff !important;
    font-size: 15px;
    text-align: justify;
}

.card-content h2 {
    color: #2c3e50;
}

.card:hover .card-content {
    opacity: 1;
    transition: 0.4s ease-in-out;
    pointer-events: auto;
}

.project-button{
    text-decoration: none;
    background: orange;
    padding: 5px 5px;
    border-radius: 10px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 3px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}

.more-button .more-btn{
    text-decoration: none;
    background: #e45447;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    border: 0px solid #e45447;
    box-shadow: none;
    text-shadow: none;
    font-weight: bold;
    width: 200px; /* Set a fixed width for all buttons */
    text-align: center; /* Center the text inside the button */
    margin-bottom: 45px;
    color: #ffffff;
    margin-top: 50px;
}

.more-btn:hover {
    background: #3498db;
}

#certificates {
    background-color: #ffff;
    margin-right: 0 !important;
}

#certificates h2 {
    margin-top: 70px;
    margin-left: 70px;
    font-size: 48px;
    color: #2c3e50;
    position: relative;
    font-family: poppins, sans-serif;
    font-weight: 700;
}

#certificates p {
    margin-left: 70px;
    font-size: 15px;
    text-align: left;
    color: #2c3e50;
    padding-bottom: 85px;
}

/* Grid Layout for Certificates and Projects */
.cert-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
    grid-gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-left: 70px;
}

.cert-button{
    text-decoration: none;
    background: orange;
    padding: 5px 5px;
    border-radius: 10px;
    border-top-left-radius: 3px;
    border-bottom-right-radius: 3px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}

.more-button {
    align-items: center;
    display: flex;
    width: 100%; /* Take full area from left to right */
    justify-content: center; /* Center the content inside */
}

#technologies {
    background-color: #e6f3f7;
    margin-bottom: 0px !important;
    text-align: center; /* Center the content */
    align-items: center;
}

.tech-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#technologies h2 {
    font-size: 48px;
    color: #2c3e50;
    position: relative;
    font-family: poppins, sans-serif;
    font-weight: 700;
    margin-right: 70px;
    margin-left: 70px;
    text-align: left;
}

#technologies p {
    font-size: 15px;
    text-align: left; /* Center the text */
    color: #2c3e50;
    padding-bottom: 85px;
    margin-right: 70px;
    margin-left: 70px;
}

.row-blox {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    width: 100%;
    max-width: 1150px;
    margin-right: auto; /* Center the grid */
    margin-left: auto; /* Center the grid */
}

.row-blox p {
    font-size: 20px;
    color: #ffffff !important;
    padding-bottom: 25px !important;
    margin: 10px !important;
}

.row-blox h4 {
    color: #ffffff !important;
    margin: 10px !important;
    padding: 25px 0px;
    font-size: larger;
}

.row-blox .lucide {
    margin-top: 55px;
    margin-left: 10px;
}

.blox-content {
    width: 80%;
    position: inherit;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
    margin-top: 25px;
}

.carxd1 {
    width: 255px;
    height: 306px;
    aspect-ratio: 1 / 0.7;
    border-radius: 5px;
    position: relative; /* Ensure the parent element has position relative */
    cursor: pointer;
    background-color: rgb(226, 165, 153);
    transition: transform 0.3s ease-in-out;
}

.carxd1:hover {
    transform: translate(0, -10px);
}

.carxd2 {
    width: 255px;
    height: 306px;
    aspect-ratio: 1 / 0.7;
    border-radius: 5px;
    position: relative; /* Ensure the parent element has position relative */
    cursor: pointer;
    background-color: rgb(113, 95, 105);
    transition: transform 0.3s ease-in-out;
}

.carxd2:hover {
    transform: translate(0, -10px);
}

.carxd3 {
    width: 255px;
    height: 306px;
    aspect-ratio: 1 / 0.7;
    border-radius: 5px;
    position: relative; /* Ensure the parent element has position relative */
    cursor: pointer;
    background-color: rgb(228, 84, 71);
    transition: transform 0.3s ease-in-out;
}

.carxd3:hover {
    transform: translate(0, -10px);
}

.carxd4 {
    width: 255px;
    height: 306px;
    aspect-ratio: 1 / 0.7;
    border-radius: 5px;
    position: relative; /* Ensure the parent element has position relative */
    cursor: pointer;
    background-color: rgb(144, 172, 209);
    transition: transform 0.3s ease-in-out;
}

.carxd4:hover {
    transform: translate(0, -10px);
}

.blank-sp {
    margin: 70px;
    margin-bottom: 0px;
    opacity: 0;
}

#contact {
    background-color: #e45447;
    text-align: center;
    color: #ffff;
    align-items: center;
}

#contact h2{
    margin-top: 100px;
    font-family: poppins, sans-serif;
    color: white;
}

#contact p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 45px;
    font-family: Roboto, sans-serif;
}

.mv-centre {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tri-col {
    display: flex;
    justify-content: space-between; /* Ensures even spacing */
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 1150px;
    font-family: Poppins, sans-serif;
    margin-bottom: 20px;
}

.tri-col > div {
    flex: 1; /* Makes them equal width */
    min-width: 250px; /* Ensures they don't get too small */
    text-align: center; /* Centers text */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* spacing between icon and text */
    padding: 15px;
    border-radius: 10px;
    color: #ffffff; /* ensures text is visible */
}

@media (max-width: 768px) {
    .tri-col {
        flex-direction: column; /* Stacks elements in a column */
    }
}

.tri-col svg {
    flex-shrink: 0;
}

.mail-btn {
    margin-top: 30px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid #e45447;
    box-shadow: none;
    text-shadow: none;
    font-weight: bold;
    width: 150px; /* Set a fixed width for all buttons */
    text-align: center; /* Center the text inside the button */
    margin-bottom: 70px;
}

/* Overlay background */
.foverlayf {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}
/* Popup form container */
.fpopupf {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    margin: 100px auto;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fslideInF 0.3s ease-out;
}
@keyframes fslideInF {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* Close button */
.fclosebtnf {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 20px;
    cursor: pointer;
    border: none;
    background: none;
}
.finputf, .ftextareaF {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.fsubmitbtnf {
    width: 100%;
    padding: 10px;
    background: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
.fsubmitbtnf:hover {
    background: #0056b3;
}

#footer {
    background-color: white;
    text-align: center;
}

#footer h4{
    color: #34495e;
    font-family: poppins, sans-serif;
}

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 12;
}

.popup-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.close-btn {
    margin-top: 10px;
    cursor: pointer;
    background: red;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
}





@media (max-width: 425) {
    .giffy{
        display: none;
    }
    
}

@media (max-width: 768px) {
    .header {
        width: 100%;
        padding: 12px 15px;
    }
    .hamb-menu {
        display: block;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        gap: 0px;
        flex-direction: column;
        position: absolute;
        background: rgba(255, 255, 255, 0.9);
        width: 100%;
        top: 60px; /* Adjust based on your header height */
        left: 0;
        padding: 10px 0;
    }

    .hamb-menu.active {
        .nav-links {
            display: flex;
        }
    }


    .logo-container {
        gap: 5px;
        align-items: flex-start;
        gap: 10px;
        transition: all 0.3s ease-in-out;
    }

    .logo {
        width: 100px;
        height: 50px;
    }

    .nav-links li {
        margin-left: 10px;
    }

    .nav-links a {
        font-size: 16px;
        padding: 8px 4px;
    }

    .hamb-menu .line {
        height: 3px;
        margin: 5px;
    }

    .hamb-menu.active .nav-links {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5%;
    }

    .section h2 {
        font-size: 18px;
    }

    .section p {
        font-size: 10px;
    }

    .wlc-container * {
        margin-left: 5px;
    }
    
    .giffy {
        display: none;
    }

    .scroll-container {
        width: calc(100vw - 50px); /* Ensures margin of 75px on left & right */
        height: 50px; /* Adjust height as needed */
    }

    .scroll-content img {
        height: 20px; /* Adjust as needed */
        border-radius: 2px;
        object-fit: cover;
        filter: grayscale(0%); /* Makes images grayscale */
        transition: transform 0.3s ease-in-out;
        user-select: none;
        pointer-events: none;
        margin-left: 25px; 
    }


    .ab-left {
        display: none;  /* Hides the .ab-left div on smaller screens */
    }

    .section .ab-right {
        flex: 1;  /* Takes full width on smaller screens */
    }

    .ab-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;  /* Ensures a 30px gap between .ab-left and .ab-right */
        margin-top: 25px;
        margin: 40px auto; /* Centers the container */
    }

    .ab-right * {
        margin-right: 10px;
    }

    .ab-right h2 {
        font-size: 36px;
    }

    .ab-right p {
        font-size: 12px;
    }

    .ab-container .ab-right .ab-button {
        margin-top: 30px;
        background: #ffffff;
        padding: 7px 10px;
        border-radius: 25px;
        font-size: 15px;
        cursor: pointer;
        border: 2px solid #3498db;
        box-shadow: none;
        text-shadow: none;
        font-weight: bold;
        width: 170px; /* Set a fixed width for all buttons */
        text-align: center; /* Center the text inside the button */
    }

    .ee-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    #education h2 {
        font-size: 36px;
        margin-left: 15px;
    }

    #education p {
        font-size: 15px;
        margin-left: 15px;
    }

    .job-box {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .job-box .job-top {
        display: flex;
        flex-direction: column;
        align-items: left;
        padding: 10px;
    }

}



@media (max-width: 1199px) {
    .job-box .top-left h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .tri-col {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        margin-right: 20px;
        margin-left: 20px;
    }
}

