@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&family=VT323&display=swap');
:root
{
    --bg-black-900: #f2f2fc;
    --bg-black-100: #fdf9ff;
    --bg-black-50:#e8dfec;
    --text-black-900:#302e4d;
    --text-black-700:#504e70;
    --footer-bg:rgb(235, 235, 235);
}
body.dark
{
    --bg-black-900: #000415;
    --bg-black-100: #0c0c0c;
    --bg-black-50:#393939ec;
    --text-black-900:#ffffff;
    --text-black-700:#e9e9e9;
    --footer-bg:rgb(14, 13, 17);
}
/* Add this as the first rules in your CSS */
html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    max-width: 100%;

}

img, video, iframe, .container, .row, .section, .main-content {
    max-width: 100%;
    height: auto;
}
html {
    scroll-behavior: smooth;
}
body
{
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 18.4px;
    font-family: 'Poppins' sans-serif;
}
*
{
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;

}
::before,::after
{
    box-sizing: border-box;
}
ul
{
    list-style: none;
}
.section
{
    background: var(--bg-black-900);
    min-height: 100vh;
    display: block;
    left: 240px;
    padding: 0 30px;
    opacity: 1;
}
.hidden
{
    display: none !important;
}
.main-content
{
    padding-left: 240px;
}
.padd-15{
    padding-left: 15px;
    padding-right: 15px;
}

.container
{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto; 
    padding: 0 15px;
}
.section .container
{
    padding-top: 60px;
    padding-bottom: 70px;
}
.section-title
{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;
}
.section-title h2
{
    font-size: 40px;
    color: var(--text-black-900);
    font-weight: 700;
    position: relative;
}
.section-title h2::before
{
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
}
.section-title h2::after
{
    content: '';
    height: 4px;
    width: 25px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}
.row
{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
    width: calc(100% + 30px); /* Compensate for negative margins */
    max-width: calc(100% + 30px);
}
.btn
{
    font-family: "Inter";
    font-size: 16.4px;
    font-weight: 200;
    padding: 12px 35px;
    color: white;
    border-radius: 40px;
    display: inline-block;
    white-space: nowrap;
    border: none;
    background: var(--skin-color);
    transition: all 0.3s ease;
}
.btn:hover
{
    transform: scale(1.05);
}
.button-container {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
    margin-top: 30px;
}
.shadow-dark
{
    box-shadow: 0 0 20px rgba(48, 77, 0.15);
}
/* aside*/
.aside
{
    width: 240px;
    background: var(--bg-black-100);
    position: fixed;
    left: 0;
    top: 0;
    padding: 30px;
    height: 100%;
    border-right: 1px solid var(--bg-black-50);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;

}
.aside .logo
{
    position: absolute;
    top: 50px;
    font-size: 30px;
    text-transform: capitalize;
}
.aside .logo a
{
    color: var(--text-black-900);
    font-weight: 700;
    padding: 15px 20px;
    font-size: 30px;
    letter-spacing: 5px;
    position: relative;
}
.aside .logo a span
{
    font-family: 'Ruse';
    font-size: 40px;
}
.aside .logo a::before
{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-bottom: 5px solid var(--skin-color);
    border-left: 5px solid var(--skin-color);
    bottom: 0;
    left: 0;
}
.aside .logo a::after
{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 5px solid var(--skin-color);
    border-right: 5px solid var(--skin-color);
    top: 0;
    right: 0;
}
.aside .nav-toggler
{
    height: 40px;
    width: 45px;
    border: 1px solid var(--bg-black-50);
    cursor: pointer;
    position: fixed;
    left: 300px;
    top: 20px;
    border-radius: 5px;
    background-color: var(--bg-black-100);
    display: none;
    align-items: center;
    justify-content: center;
}
.aside .nav-toggler span
{
    height: 2px;
    width: 18px;
    background: var(--skin-color);
    display: inline-block;
    position: relative;
}
.aside .nav-toggler span::before
{
    content: '';
    height: 2px;
    width: 18px;
    background-color: var(--skin-color);
    position: absolute;
    top: -6px;
    left: 0;
}
.aside .nav-toggler span::after
{
    content: '';
    height: 2px;
    width: 18px;
    background-color: var(--skin-color);
    position: absolute;
    top: 6px;
    left: 0;
}
.aside .nav
{
    margin-top: 50px;
}
.aside .nav li
{
    margin-bottom: 20px;
    display: block;
}
.aside .nav li a
{
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter";
    display: block;
    border-bottom: 1px solid var(--bg-black-50);
    color: var(--text-black-900);
    padding: 5px 15px;
}
.aside .nav li a.active 
{
  color: var(--skin-color);
  border-left: 3px solid var(--skin-color);
  border-right: 3px solid var(--skin-color);
  padding-left: 12px;
  background: rgba(0,0,0,0.04);
  border-radius: 6px;
}
.aside .nav li a i
{
    margin-right: 15px;
}
/* home */
.home
{
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-black-900);
}
.home .home-info
{
    flex: 0 0 60%;
    max-width: 60%;
}
h3.hello
{
    font-family: "Inter";
    font-size: 28px;
    margin: 15px 0;
}
h3.hello span
{
    font-family: "Inter";
    font-size: 40px;
    font-weight: 700;
    color: var(--skin-color);
}
h3.my-profession
{
    font-size: 30px;
    margin: 15px 0;
}
.typing
{
    color: var(--skin-color);
}
.home-info p
{
    font-family: "lato";
    margin-bottom: 70px;
    font-size: 20px;
    color: var(--text-black-700);
}
.home .home-img
{
    flex: 0 0 40%;
    max-width: 40%;
    align-items: center;
    display: flex;
    position: relative;
}
.home-img::after
{
    content: '';
    position: absolute;
    height: 80px;
    width: 80px;
    border-bottom: 10px solid var(--skin-color);
    border-right: 10px solid var(--skin-color);
    right: 0px;
    bottom: -40px;

}
.home-img::before
{
    content: '';
    position: absolute;
    height: 80px;
    width: 80px;
    border-top: 10px solid var(--skin-color);
    border-left: 10px solid var(--skin-color);
    left: 0px;
    top: -40px;

}
.home .home-img img
{
    margin: auto;
    border-radius: 5px;
    height: 400px;
}
/* About */
.financial-advisor {
    font-size: 35px;
    color: var(--skin-color);
    font-weight: 700;
}

.about .about-content
{
    font-family: "lato";
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .about-text
{
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .about-text h3
{
    font-family: "Inter";
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-black-900);
}
.about .about-content .about-text h3 span
{
    color: var(--skin-color);
}
.about .about-content .about-text p
{
    font-family: "lato";
    font-size: 18.4px;
    line-height: 25px;
    color: var(--text-black-700);
}
.about .about-content .personal-info
{
    flex: 0 0 60%;
    max-width: 60%;
    margin-top: 40px;
}
.about .about-content .personal-info .info-item
{
    flex: 0 0 50%;
    max-width: 50%;
}
.about .about-content .personal-info .info-item p
{
    font-weight: 600;
    padding: 10px 0;
    font-size: 18.4px;
    color: var(--text-black-900);
    border-bottom: 1px solid var(--bg-black-50);
}
.about .about-content .personal-info .info-item p span
{
    font-weight: 400;
    color: var(--text-black-700);
    margin-left: 4px;
    display: inline-block;
}
.about .about-content .personal-info .buttons
{
    margin-top: 30px;
}
.about .about-content .personal-info .buttons .btn
{
    margin-right: 15px;
    margin-top: 10px;
}
.about .about-content .skills
{
    flex: 0 0  40%;
    max-width: 40%;
    margin-top: 40px;
}
.about .about-content .skills .skill-item
{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
}
.about .about-content .skills .skill-item h5
{
    line-height: 4px;
    font-weight: 600;
    font-size: 18.4px;
    color: var(--text-black-900);
    text-transform: capitalize;
    margin-bottom: 8px;
    line-height: normal;
}
.about .about-content .skills .skill-item .progress
{
    background-color: var(--bg-black-50);
    height: 7px;
    border-radius: 4px;
    width: 100%;
    position: relative;
}
.about .about-content .skills .skill-item .progress .progress-in
{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 4px;
    background-color: var(--skin-color);
}
.about .about-content .skills .skill-item .skill-percent
{
    position: absolute;
    right: 0;
    color: var(--text-black-900);
    top: -40px;
    font-weight: 400;
    line-height: 40px;
}
.about .about-content .education,
.about .about-content .experience
{
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 30 px; 
}
.about .about-content h3.title
{
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--bg-black-900);
}
.about .about-content .timeline-box
{
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .timeline
{
    background-color: var(--bg-black-100);
    padding: 30px 15px;
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    width: 100%;
    position: relative;
}
.about .about-content .timeline .timeline-item
{
    position: relative;
    padding-left: 37px;
    padding-bottom: 50px;
}
.about .about-content .timeline .timeline-item:last-child
{
    padding-bottom: 0;
}
.about .about-content .timeline .timeline-item::before
{
    content: '';
    width: 1px;
    position: absolute;
    height: 100%;
    left: 7px;
    top: 0;
    background-color: var(--skin-color);
}
.about .about-content .timeline .circle-dot
{
    position: absolute;
    left: 0;
    top: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: var(--skin-color);
}
.about .about-content .timeline .timeline-date
{
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-black-700);
}
.about .about-content .timeline .timeline-date .fa
{
    margin-right: 5px;
}
.about .about-content .timeline .timeline-title
{
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: var(--text-black-900);
}
.about .about-content .timeline .timeline-text
{
    line-height: 25px;
    font-size: 18.4px;
    text-align: justify;
    color: var(--text-black-700);
}
.about-img {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
}
/* =============== About Section - Mobile  =============== */
@media (max-width: 767px) {
    .about .about-content .personal-info .row {
        flex-direction: column;
        width: 100%;
        margin: 0;
    }
    .about .about-content .personal-info .info-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100%;
        margin-bottom: 15px;
        padding-left: 0;
        padding-right: 0;
    }
    .about .about-content .personal-info .info-item p {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 15px;
        margin: 0;
        font-size: 16px;
        border-bottom: 1px solid var(--bg-black-50);
        background: var(--bg-black-100);
        border-radius: 8px;
        word-break: break-word;
    }
    .about .about-content .personal-info .info-item p strong,
    .about .about-content .personal-info .info-item p b,
    .about .about-content .personal-info .info-item p:first-child {
        font-weight: 600;
        color: var(--text-black-900);
        margin-bottom: 5px;
    }
    .about .about-content .personal-info .info-item p span {
        display: block;
        margin-left: 0;
        margin-top: 5px;
        font-size: 15px;
        color: var(--skin-color);
        word-break: break-all;
        background: rgba(0,0,0,0.02);
        padding: 8px 12px;
        border-radius: 6px;
        width: 100%;
    }
    .about .about-content .personal-info .info-item:first-child p span {
        color: var(--skin-color);
    }
    .about .about-content .personal-info .info-item:last-child {
        margin-bottom: 0;
    }
    .about .about-content .personal-info {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
        margin-top: 30px;
    }
}
@media (max-width: 480px) {
    .about .about-content .personal-info .info-item p {
        font-size: 15px;
        padding: 10px 12px;
    }
    
    .about .about-content .personal-info .info-item p span {
        font-size: 14px;
        padding: 6px 10px;
    }
}
/* Stats Row Style */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center; 
    margin-top: 30px;
    padding: 15px 0;
    flex-wrap: wrap; 
    width: 100%;
}
.stat-item {
    text-align: center;
    flex: 0 0 23%;
    max-width: 23%;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-item i {
    font-size: 60px;
    color: var(--skin-color);
    margin-bottom: 10px;
}
.stat-item h4 {
    font-size: 22px;
    color: var(--text-black-900);
    font-weight: 700;
}
.stat-item i, .stat-item h4 {
    transition: all 0.3s ease;
}
.stat-item:hover {
    transform: scale(1.05);
    color: var(--skin-color);
}
.stat-item:hover i {
    color: var(--skin-color);
}
.stat-item:hover h4 {
    color: var(--skin-color);
}
@media (max-width: 768px) {
    .stat-item {
        flex: 0 0 48%;
        max-width: 48%;
        margin-bottom: 20px;
    }

    .stat-item i {
        font-size: 50px; 
    }

    .stat-item h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 0 0 100%; 
        max-width: 100%;
    }

    .stat-item i {
        font-size: 40px;
    }

    .stat-item h4 {
        font-size: 18.4px; 
    }
}
/* services*/
.services .container
{
    padding-bottom: 40px;
}
.services .services-item
{
    font-family: "lato";
    margin-bottom: 30px;
    flex: 0 0 50%;
    max-width: 50%;
}
.services-item-inner {
    cursor: pointer;
}
.services .services-item .services-item-inner {
    background-color: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    padding: 30px 15px;
    text-align: center;
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}
.services .services-item .services-item-inner .main-content{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.services .services-item .services-item-inner .icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.services .services-item .services-item-inner .icon .fa
{
    font-size: 40px;
    line-height: 60px;
    color: var(--skin-color);
    transition: all 0.3s ease;
}
.services .services-item .services-item-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(48, 46, 77, 0.25);
    background-color: var(--bg-black-50);
}
.services .services-item .services-item-inner:hover .icon {
    background-color: var(--skin-color);
}
.services .services-item .services-item-inner:hover .icon .fa {
    color: #fff;
    transform: scale(0.9);
}
.services .services-item .services-item-inner h4
{
    margin-top: 15px;
    font-size: 21px;
    margin-bottom: 15px;
    color: var(--text-black-900);
    text-transform: capitalize;
}
.services .services-item .services-item-inner p
{
    font-size: 18.4px;
    color: var(--text-black-700);
    line-height: 25px;
}
.services-mini {
    font-family: "lato";
    text-align: center;
    color: rgb(210, 137, 0);
    font-weight: 700;
    font-size: 24px;
    margin-top: 100px;
    margin-bottom: 20px;
    position: relative;
}
.services-mini::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background-color: rgb(210, 137, 0);
}
.services-caption {
    font-family: "Inter";
    text-align: center;
    color: var(--text-black-900);
    font-weight: 700;
    font-size: 18.4px;
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    position: relative;
    margin-bottom: 30px;
}
.svcbtn {
    display: block;
    margin: 0 auto;
    font-size: 18.4px;
    font-weight: 500;
    padding: 12px 35px;
    color: white;
    border-radius: 40px;
    white-space: nowrap;
    border: none;
    background: var(--skin-color);
    transition: all 0.3s ease;
    text-align: center;
}
@media (max-width: 767px) {
    .services .services-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 20px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .services .services-item-inner {
        width: 100% !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .services .services-item {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}
/* awards */
/*achievement*/
.achievement-item
{
    font-family: "lato";
    margin-bottom: 30px;
    flex: 0 0 100%;
    max-width: 100%;
}
.achievement-item .achievement-item-inner
{
    background-color: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
}
.achievement-item .achievement-item-inner:hover
{
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
    box-shadow: 0 15px 30px rgba(48, 46, 77, 0.25);
    background-color: var(--bg-black-50);
}
.achievement-item .achievement-item-inner .icon .fa-solid
{
    font-size: 40px;
    line-height: 60px;
    color: var(--skin-color);
    transition: all 0.3s ease;
}
.achievement-item .achievement-item-inner:hover .icon .fa-solid
{
    font-size: 285%;
}
.achievement-item .achievement-item-inner h4
{
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-black-900);
    text-transform: capitalize;
}
.achievement-item .achievement-item-inner h5
{
    font-size: 18.4px;
    margin-bottom: 10px;
    color: var(--text-black-900);
    text-transform: capitalize;
}
.achievement-item .achievement-item-inner p
{
    font-size: 18.4px;
    color: var(--text-black-700);
    line-height: 25px;
}
.awards-heading
{
    font-family: "Inter";
    color: var(--text-black-900);
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}
.award-logo-container {
    width: 200px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    background-color: #f2f2fc;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.award-logo {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}
.achievement-item .achievement-item-inner:hover
{
    transform: scale(1.02);
}
/* contact */
.contact-title
{
    color: var(--skin-color);
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}
.contact-sub-title
{
    font-family: "Inter";
    color: var(--text-black-900);
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
}
.contact-sub-title2
{
    font-family: "Inter";
    color: var(--text-black-900);
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
}
.contact .row {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.contact .contact-info-item
{
    font-family: "lato";
    padding: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 22.5%;
    max-width: 22.5%;
    text-align: center;
    margin-top: 15px;
    border-radius: 30px;
}
.contact .contact-info-item:hover
{
    transform: scale(1.05);
    background-color: rgba(48, 46, 77, 0.15);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);  /* optional */
}
.contact-mini {
    font-family: "lato";
    text-align: center;
    color: rgb(210, 137, 0);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
}
.contact-blankrow{
    display:block;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: 15px;
    margin-top: 100px;
    position: relative;
}
.contact .contact-info-item .icon
{
    display: inline-block;
}
.contact .contact-info-item .icon .fa,
.contact .contact-info-item .icon .fab
{
    font-size: 25px;
    color: var(--skin-color);
}
.contact .contact-info-item h4
{
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black-900);
    text-transform: capitalize;
    margin: 15px 0 5px;
}
.contact .contact-info-item p
{
    font-size: 18.4px;
    line-height: 25px;
    color: var(--text-black-700);
    font-weight: 400;
}
.contact .contact-form
{
    flex: 0 0 100%;
    max-width: 100%;
}
.contact .contact-form .col-6
{
    flex: 0 0 50%;
    max-width: 50%;
}
.contact .contact-form .col-12
{
    flex: 0 0 100%;
    max-width: 100%;
}
.contact .contact-form .form-item
{
    margin-bottom: 30px;
}
.contact .contact-form .form-item .form-control
{
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    padding: 10px 25px;
    font-size: 18.4px;
    color: var(--text-black-700);
    transition: all 0.3s ease;
}
.contact .contact-form .form-item .form-control:focus
{
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}
.contact .contact-form .form-item textarea.form-control
{
    height: 140px;
}
.contact .contact-form .btn
{
    flex: 0 0 50%;
    max-width: 50%;
    height: 50px;
    padding: 0 50px;
}
/* =============== FIX SPACING ISSUES =============== */
.section .container {
    padding-top: 40px;
    padding-bottom: 40px;
}
.awards-heading {
    color: var(--text-black-900);
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.contact-blankrow {
    font-family: "lato";
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 40px auto 0 !important;
    padding: 0 20px !important;
}
.contact-title {
    margin-bottom: 10px !important;
    text-align: center !important;
    width: 100% !important;
}
.contact-sub-title {
    padding-bottom: 0 !important;
    font-weight: 700;
    line-height: 1.5;
}
.contact-sub-title2 {
    padding-bottom: 0 !important;
    font-size: 16.4px;
    font-weight: 200;
    line-height: 1.5;
}
.contact .container > .row:last-child,
.contact .container > div:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
@media (max-width: 767px) {
    .section .container {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    .awards-heading {
        margin-bottom: 20px !important;
        font-size: 16px !important;
    }
    
    .contact-blankrow {
        margin-top: 30px !important;
        padding: 0 15px !important;
    }
    
    .contact-title {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }
    
    .contact-sub-title {
        font-size: 13px !important;
    }
    .contact .row {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
        justify-content: center !important;
    }
    
    .contact .contact-info-item {
        flex: 0 0 calc(50% - 15px) !important;
        max-width: calc(50% - 15px) !important;
        margin: 0 !important;
        padding: 15px 10px !important;
    }
    
    @media (max-width: 480px) {
        .contact .contact-info-item p {
            display: none;
        }
        
        .contact .contact-info-item {
            padding: 12px 5px !important;
        }
        
        .contact .contact-info-item h4 {
            margin: 8px 0 0 !important;
            font-size: 14px !important;
        }
    }
}


@media (min-width: 768px) and (max-width: 991px) {
    .section .container {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
    
    .contact-blankrow {
        margin-top: 25px !important;
    }
}
.confirmation
{
    padding-left: 20px;
    font-size: 18.4px;
    font-family: 'Poppins', sans-serif !important;
    text-transform: capitalize;
}
.reveal {
    opacity: 0;
    transition: opacity 1.5s ease;
  }
.reveal.active {
    opacity: 1;
}
@media (max-width:1400px)
{
    .aside
    {
        left: -240px;
    }
    .main-content
    {
        padding-left: 0;
    }
    .about .about-content .personal-info .info-item p span
    {
        display: block;
        margin-left: 0;
    }
}
@media (max-width:991px)
{
    .contact .contact-info-item,
    .awards .awards-item,
    .services .services-item
    {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .home .home-info
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .home .home-img
    {
        display: none;
    }
}
@media (max-width:767px)
{
    .contact .contact-form .col-6,
    .contact .contact-info-item,
    .awards .awards-item,
    .services .services-item,
    .about .about-content .experience,
    .about .about-content .education,
    .about .about-content .skills,
    .about .about-content .personal-info
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* =============== Testimonial Section =============== */
.Testimonial-sub-title {
    font-family: "Inter";
    color: var(--text-black-900);
    text-align: center;
    font-size: 18.4px;
    margin-bottom: 60px;
}
.testimonial-container {
    position: relative;
    overflow-x: hidden;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 10px;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;   
}
.testimonial-container:active {
    cursor: grabbing;
}
.testimonial-container::-webkit-scrollbar {
    display: none;
}
.testimonial-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.testimonial-row {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    width: max-content;
    animation: scrollTestimonials 40s linear infinite;
    user-select: none;
}
.testimonial-container:hover .testimonial-row {
    animation-play-state: paused;
}
.testimonial-container:active .testimonial-row {
    animation-play-state: paused;
}
@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.testimonial-item {
    flex: 0 0 auto;
    width: 400px;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: text;
}
.testimonial-container.dragging {
    cursor: grabbing;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}
.testimonial-container:active .testimonial-item {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}
.testimonial-scroll-indicator {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-black-700);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.testimonial-scroll-indicator i {
    color: var(--skin-color);
}
.testimonial-container:hover + .testimonial-scroll-indicator {
    opacity: 1;
}
@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}
.testimonial-scroll-indicator i {
    animation: pulse 2s infinite;
}
.testimonial-card {
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.testimonial-card .quote {
    font-size: 40px;
    color: rgba(255, 165, 0, 0.3);
    font-weight: 900;
}
.testimonial-card .stars i {
    color: rgb(210, 137, 0);
    margin-right: 4px;
    font-size: 14px;
}
.testimonial-item-title{
    margin-top: 10px;
    font-size: 18.4px;
    font-family: "lato";
    color: var(--text-black-900);
}
.testimonial-text {
    color: var(--text-black-700);
    font-family: "lato";
    font-size: 16.4px;
    line-height: 1.6;
    margin-top: 10px;
    text-align: justify;
}
.testimonial-divider {
    height: 1px;
    background: var(--bg-black-50);
    margin: 18px 0;
}
.testimonial-footer {
    font-family: "Inter";
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 165, 0, 0.35);
}
.testimonial-meta h4 {
    font-size: 14px;
    margin: 0;
    color: var(--skin-color);
}
.testimonial-meta span {
    font-size: 12px;
    color: var(--text-black-700);
}
.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991px) {
    .testimonial-item {
        width: 300px;
    }
}
@media (max-width: 768px) {
    .testimonial-item {
        width: 85vw !important;
        max-width: 85vw !important;
        flex: 0 0 auto !important;
    }
    
    .testimonial-container {
        width: 100vw !important;
        overflow: hidden !important;
    }
}
.testimonial-scroll-indicator {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-black-700);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.testimonial-container:hover + .testimonial-scroll-indicator {
    opacity: 1;
}

/* =============== Company Logos Section =============== */
.company-logos {
    background: var(--bg-black-900);
    padding: 20px 0;
}
.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.logo-item {
    text-align: center;
    flex: 0 0 auto;
    max-width: 300px;
}
.company-logo {
    max-width: 220px;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
    padding: 20px;
    background: var(--bg-black-900);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.company-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.logo-caption {
    margin-top: 15px;
    font-size: 16px;
    color: var(--text-black-700);
    font-weight: 500;
}
.logos-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--bg-black-50);
    margin-bottom: 20px;
}
.logos-description p {
    color: var(--text-black-700);
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}
@media (max-width: 991px) {
    .logos-container {
        gap: 40px;
    }
    .logo-item {
        max-height: 250px;
    }
    .company-logo {
        max-height: 100px;
        padding: 15px;
    }
}
@media (max-width: 767px) {
    .company-logos {
        padding: 40px 0;
    }
    .logos-container {
        flex-direction: column;
        gap: 30px;
    }
    .logo-item {
        max-width: 220px;
    }   
    .company-logo {
        max-height: 90px;
    }
}
/* Footer Styles */
.footer {
    background: var(--bg-black-100);
    border-top: 1px solid var(--bg-black-50);
    padding: 50px 0 30px;
    text-align: center;
    width: 100%;
}
@media (min-width: 1401px) {
    .footer {
        margin-left: 240px;
        width: calc(100% - 240px);
    }
}
@media (max-width: 1400px) {
    .footer {
        margin-left: 0;
        width: 100%;
    }
}
.footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}
.footer-content {
    max-width: 800px;
    margin: 0 auto;
}
.footer {
  background-color: var(--footer-bg);
  color: var(--text-black-900);
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-top {
  margin-bottom: 15px;
}
.footer-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer-top p {
  font-size: 14px;
}
.footer-bottom p {
  font-size: 10px;
  margin-top: 10px;
  color: #bda125c5;
}
.social-media {
  margin-top: 15px;
}
.social-icon {
  color: var(--text-black-900);
  font-size: 18px;
  margin: 0 10px;
  text-decoration: none;
}
.social-icon:hover {
  color: rgb(210, 137, 0);
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 10px;
  }
  .footer-heading {
    font-size: 20px;
  }
  .footer-bottom p {
    font-size: 12px;
  }
  .social-icon {
    font-size: 16px;
  }
}
/* Mobile specific */
@media (max-width: 991px) {
    .section {
        left: 0 !important;
        width: 100% !important;
        padding: 0 20px !important;
    }
    .main-content {
        padding-left: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    } 
    .container {
        padding: 0 15px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }  
    .row {
        margin-left: -15px !important;
        margin-right: -15px !important;
        width: calc(100% + 30px) !important;
        max-width: calc(100% + 30px) !important;
    }
    [class*="padd-15"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .home {
        display: flex !important;
        align-items: center !important;
        min-height: 100vh !important;
        padding-top: 0 !important;
    }
    
    .home .container {
        display: flex !important;
        align-items: center !important;
        min-height: 100vh !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .home .home-info {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin-top: 0 !important;
    }
    
    /* ===== BUTTON FIXES ===== */
    .button-container {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        align-items: center !important;
        margin-top: 30px !important;
    }
    
    .btn {
        white-space: normal !important;
        word-wrap: break-word !important;
        width: 100% !important;
        max-width: 280px !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        text-align: center !important;
    }
}
/* Page loading animation CSS */
.slide-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: transform, opacity;
}
.slide-in.active {
  opacity: 1;
  transform: translateY(0);
}
.slide-in-left {
  transform: translateX(-50px);
}
.slide-in-right {
  transform: translateX(50px);
}
.slide-in-bottom {
  transform: translateY(50px);
}
.slide-in.delay-1 { transition-delay: 0.1s; }
.slide-in.delay-2 { transition-delay: 0.3s; }
.slide-in.delay-3 { transition-delay: 0.5s; }
.slide-in.delay-4 { transition-delay: 0.7s; }


.vday-button-container{
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    align-items: center !important;
    margin-top: 30px !important;
}

.vday-button{
    text-align: center;
    font-family: "Inter";
    font-size: 16.4px;
    font-weight: 500;
    padding: 12px 35px;
    color: rgb(0, 0, 0);
    border-radius: 40px;
    white-space: nowrap;
    border: none;
    background: pink;
    transition: all 0.3s ease;
    white-space: normal !important;
    word-wrap: break-word !important;
    width: 100% !important;
    max-width: 280px !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    text-align: center !important;
}