/* =========================================================
   Base & Utilities
   ========================================================= */

/* Performance Optimization */
* {
    box-sizing: border-box;
}

:root {
    --brand-gold: #8a6b34;
    --brand-gold-light: #d4b87a;
}

body {
    color: #000;
    font-family: "DM Sans", sans-serif;
}

::selection {
color: #fff;
    text-shadow: none;
    background-color: var(--brand-gold);
}

::-moz-selection {
color: #fff;
    text-shadow: none;
    background-color: var(--brand-gold);
}

::-webkit-scrollbar {
width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
cursor: pointer;
    background: var(--brand-gold);
}

.font-custom {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.text-primary {
    color: var(--brand-gold) !important;
}

.text-success,
a.text-success:hover {
    color: #5ca595 !important;
}

/* =========================================================
   Preloader
   ========================================================= */
.preloader {
position: fixed;
    overflow: hidden;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f5f4f0;
    text-align: center;
}

.three-bounce {
position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.three-bounce>div {
display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background-color: #c06451;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
    animation: bouncedelay 1.4s infinite ease-in-out both;
}

.three-bounce .one {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.three-bounce .two {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
    0%,
    100%,
    80% {
        -webkit-transform: scale(0);
}

40% {
        -webkit-transform: scale(1);
}
}

@keyframes bouncedelay {
    0%,
    100%,
    80% {
        -webkit-transform: scale(0);
        transform: scale(0);
}

40% {
transform: scale(1);
        -webkit-transform: scale(1);
    }
}

/* =========================================================
   Header & Navigation
   ========================================================= */
.header-fixed {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
position: fixed;
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
}

.brand {
float: left;
    margin-right: 1rem;
    white-space: nowrap;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.brand a {
color: inherit;
}

.header-content {
    line-height: 3;
}

.mail-link,
.mail-link:hover,
.phone-link,
.phone-link:hover {
color: inherit;
}

.phone-link {
    cursor: default;
}

.nav-toggle-btn {
    background: 0 0;
    border: none;
    padding: 0.625rem 0;
    margin: 0;
    border-radius: 0;
    outline: 0;
    float: right;
    position: relative;
    z-index: 995;
    font-weight: 700;
    text-transform: uppercase;
    color: inherit;
}

.nav-toggle-btn:hover {
    color: #b11d11;
}

.nav-toggle-btn:focus {
    outline: 0;
}

.nav-toggle {
    display: block;
    width: 32px;
}

.nav-toggle .stick {
display: block;
    width: 100%;
    border-radius: 3px;
    height: 3px;
    background: #000;
    transition: all 0.3s;
    position: relative;
}

.nav-toggle .stick+.stick {
    margin-top: 9px;
}

.body-menu-opened .nav-toggle .stick-1 {
    animation: ease 0.5s top forwards;
}

.nav-toggle .stick-1 {
    animation: ease 0.5s top-2 forwards;
}

.body-menu-opened .nav-toggle .stick-2 {
    animation: ease 0.5s bottom forwards;
}

.nav-toggle .stick-2 {
    animation: ease 0.5s bottom-2 forwards;
}

@keyframes top {
    0% {
        top: 0;
        transform: rotate(0);
}

50% {
top: 6px;
        transform: rotate(0);
}

100% {
top: 6px;
        transform: rotate(45deg);
}
}

@keyframes top-2 {
0% {
top: 6px;
        transform: rotate(45deg);
}

50% {
top: 6px;
        transform: rotate(0);
}

100% {
top: 0;
        transform: rotate(0);
}
}

@keyframes bottom {
0% {
bottom: 0;
        transform: rotate(0);
}

50% {
bottom: 6px;
        transform: rotate(0);
}

100% {
bottom: 6px;
        transform: rotate(135deg);
}
}

@keyframes bottom-2 {
0% {
bottom: 6px;
        transform: rotate(135deg);
}

50% {
bottom: 6px;
        transform: rotate(0);
}

100% {
bottom: 0;
        transform: rotate(0);
}
}

.menu {
position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    background: #fff;
    max-width: 100%;
    width: 100%;
    padding: 4.25rem 4.375rem 4.1875rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.body-menu-opened .menu {
-webkit-transform: translateX(0);
    transform: translateX(0);
}

.hide-menu {
position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 980;
}

.body-menu-opened .hide-menu {
    bottom: 0;
}

.menu .menu-footer,
.menu .menu-main,
.menu .social {
    opacity: 0;
    transform: translateY(3rem);
    transition: all 0.5s ease-in-out;
}

.menu .menu-main {
    transition-delay: 0.4s;
}

.menu .social {
    transition-delay: 0.6s;
}

.menu .menu-footer {
    transition-delay: 0.8s;
}

.body-menu-opened .menu .menu-footer,
.body-menu-opened .menu .menu-main,
.body-menu-opened .menu .social {
    opacity: 1;
    transform: translateY(0);
}

.menu-main {
height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 1.375rem;
    font-weight: 700;
}

.menu-main>ul>li {
    padding-left: 2px;
}

.menu-main a,
.menu-main a:hover {
color: #1f2044;
}

.menu-main .active>a,
.menu-main a:hover {
    color: var(--brand-gold) !important;
}

.menu-main a:after {
    content: ".";
    opacity: 0;
    display: inline-block;
    transform: translate(2rem, 0);
    transition: all 0.3s ease-in-out;
}

.menu-main .active a:after {
    transform: translate(0, 0);
    opacity: 1;
}

/* =========================================================
   Shared Layout & Slide Elements
   ========================================================= */
.content a {
    transition: color 0.3s ease;
}

.slide-container {
    padding-top: 8rem;
    position: relative;
    padding-bottom: 5rem;
}

.slide-container>.container {
    z-index: 200;
position: relative;
}

.slide-title {
margin-bottom: 2rem;
    font-size: 2rem;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.slide-title-line {
    display: block;
}

.slide-title-2 {
    font-size: 1.5rem;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.slide-title-lg {
    margin-left: -0.25rem;
    font-size: 6.875rem;
}

.slide-title-sub {
color: #0c0c0c;
    font-size: 1rem;
    padding: 10px 0;
    line-height: 1.45454545;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    border-radius: 0 0 10px 10px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.slide-title-sub-line {
    display: block;
    letter-spacing: 0.2em;
}

.slide-title-sub-2 {
    font-size: 0.75rem;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    line-height: 1.45454545;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.slide-title-sub-sm {
    font-size: 1.125rem;
    line-height: 1.55555556;
}

.slide-title-info {
    font-size: 1.275rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.035em;
}

.slide-btn {
    margin-top: 6.85185185vmin;
}

.slide-descr {
    font-size: 1.125rem;
    line-height: 1.666666667;
}

.slide-descr-intro {
    max-width: 32rem;
    margin-top: 1.5rem;
}

[class*=" circle-"],
[class^="circle-"] {
    border-radius: 70.625rem;
    transition: all 0.7s ease-in-out;
}

.circle-golden {
    background-color: var(--brand-gold);
}

.circle-brown {
    background-color: #c06451;
}

.circle-light {
    background-color: #f5f4f0;
}

.circle-green {
    background-color: #5ca595;
}

.slide-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    overflow: hidden;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.slide-photo {
    position: absolute !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 75% 100%;
}

/* =========================================================
   Intro Section
   ========================================================= */
.slide-personal-intro {
    background-image: url(../images/bg-personal-intro.png);
    background-size: cover;
}

.slide-intro-circle-1 {
    width: 10.0625rem;
    height: 10.0625rem;
    left: -4.5rem !important;
    top: 45.46296296% !important;
    bottom: auto;
    right: auto;
}

.slide-intro-circle-2 {
    width: 70.625rem;
    height: 70.625rem;
    left: 58.85416667% !important;
    top: 46.66666667% !important;
    bottom: auto;
    right: auto;
}

/* =========================================================
   Services Section
   ========================================================= */
.slide-personal-services .slide-title-info {
    margin-top: 1.25rem;
    margin-bottom: 8.33333333vmin;
}

.slide-title-personal-services {
    margin-bottom: 5.55555556vmin;
    line-height: 0.93636364;
}

.slide-descr-personal-services {
    margin-right: 10%;
    margin-top: 2.375rem;
    margin-bottom: 2rem;
}

.slide-services-circle-1 {
    width: 8.3125rem;
    height: 8.3125rem;
    right: -3.9375rem !important;
    top: 18.51851852% !important;
    bottom: auto;
    left: auto !important;
}

.slide-services-circle-2 {
    width: 55rem;
    height: 55rem;
    left: -8.4375% !important;
    top: 49.44444444% !important;
    bottom: auto;
    right: auto;
}

.service-list {
    margin-bottom: -1.75rem;
}

.service-item {
    margin-bottom: 3.75rem;
}

.service-item-title {
    margin-bottom: 0.5625rem;
}

/* =========================================================
   Skills Section
   ========================================================= */
.slide-personal-skills .slide-title-info {
    margin-bottom: 3.5rem;
}

.skills-carousel-wrapper {
    position: relative;
}

.skill-category {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.skill-category:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-height: 120px;
}

.skill-item i {
    font-size: 2.5rem;
    color: var(--brand-gold);
    transition: all 0.3s ease;
}

.skill-item span {
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(185, 158, 100, 0.3);
}

.skill-item:hover i {
    color: #fff;
    transform: scale(1.2);
}

.skill-item:hover span {
    color: #fff;
}

.slide-skills-circle-1 {
width: 8.3125rem;
    height: 8.3125rem;
    right: -3.9375rem !important;
    top: 18.51851852% !important;
    bottom: auto;
    left: auto !important;
}

.slide-skills-circle-2 {
width: 55rem;
    height: 55rem;
    left: -8.4375% !important;
    top: 49.44444444% !important;
    bottom: auto;
    right: auto;
}

/* =========================================================
   Achievements (Clients) Section
   ========================================================= */
.slide-personal-clients .slide-bg {
    background-image: url(../images/bg-personal-clients.png);
}

.slide-personal-clients .slide-title-info {
    margin-bottom: 12.40740741vmin;
}

.title-mini {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 700;
}

.slide-personal-clients .title-mini {
    margin-bottom: 3.375rem;
}

.client-icon {
    width: 3.75rem;
    flex-shrink: 0;
}

.client-item-title {
    margin-bottom: 0.625rem;
    font-size: 2.125rem;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    line-height: 0.94117647;
}

.clients-photo-item-grid {
    width: 100%;
}

.clients-photo-item-grid>.inside {
    width: 120px;
    height: 120px;
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brand-gold);
    transition: transform 0.3s ease;
}

.clients-photo-item-grid>.inside:hover {
    transform: scale(1.05);
}

.clients-photo-item-grid img {
    object-fit: contain;
}

.icon-partners,
.icon-project,
.icon-worldwide {
    display: inline-block;
    vertical-align: top;
    width: 3.75rem;
    height: 3.75rem;
    background-position: 50% 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.icon-partners {
    background-image: url(../images/icon-partners.png);
}

.icon-project {
    background-image: url(../images/icon-project.png);
}

.icon-worldwide {
    background-image: url(../images/icon-worldwide.png);
}

/* =========================================================
   Experience Section
   ========================================================= */
.experience-list {
    margin-bottom: 2rem;
}

.experience-item-date {
    font-size: 0.75rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.experience-item-company {
    margin-bottom: 0.5rem;
}

.experience-item-title {
    margin-bottom: 0;
}

/* =========================================================
   Education Section
   ========================================================= */
.slide-personal-education .slide-title-info {
    margin-bottom: 3.5rem;
}

.education-card {
    position: relative;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.education-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(185, 158, 100, 0.2);
}

.education-icon {
    margin-bottom: 2rem;
}

.education-icon i {
    font-size: 4rem;
    color: var(--brand-gold);
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.education-degree h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.education-cgpa {
    color: var(--brand-gold);
    font-weight: 600;
}

.education-cgpa strong {
    color: var(--brand-gold);
    font-size: 1.1rem;
}


.education-meta {
    gap: 2rem;
    display: flex;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    margin-bottom: 2.5rem;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.education-cgpa,
.education-date,
.education-university,
.education-location {
    color: #666;
    display: flex;
    font-size: 0.9rem;
    align-items: center;
}

.education-cgpa i,
.education-date i,
.education-university i,
.education-location i {
    color: var(--brand-gold);
    font-size: 1rem;
}

.education-courses {
    text-align: left;
    margin-top: 2rem;
}

.education-courses h4 {
    margin-bottom: 1.5rem;
    color: #333;
}

.courses-list {
    gap: 0.75rem;
    display: flex;
    flex-wrap: wrap;
}

.course-tag {
    color: #333;
    border-radius: 6px;
    font-size: 0.875rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f5f4f0;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.course-tag:hover {
    background: var(--brand-gold);
    color: #fff;
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(185, 158, 100, 0.3);
}

.slide-education-circle-1 {
    width: 8.3125rem;
    height: 8.3125rem;
    right: -3.9375rem !important;
    top: 18.51851852% !important;
    bottom: auto;
    left: auto !important;
}

.slide-education-circle-2 {
    width: 55rem;
    height: 55rem;
    left: -8.4375% !important;
    top: 49.44444444% !important;
    bottom: auto;
    right: auto;
}

/* =========================================================
   Testimonials Section
   ========================================================= */
.slide-personal-testimonials .slide-bg {
    background-image: url(../images/bg-personal-testimonials.png);
}

.slide-testimonials-circle-1 {
    width: 5.625rem;
    height: 5.625rem;
    left: 25% !important;
    top: 100% !important;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
}

.testimonials-item {
    padding: 2rem 0;
}

.testimonials-item-avatar-container {
    display: flex;
    justify-content: center;
}

.testimonial-item-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.testimonial-item-avatar .inside {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonials-item-rating {
    color: var(--brand-gold);
    font-size: 1.25rem;
}

.testimonials-item-rating i {
    margin: 0 0.125rem;
}

.testimonials-item-author {
    color: #000;
    font-size: 1rem;
}

.testimonials-item-author-status {
    font-size: 0.875rem;
}

.testimonials-item-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #000;
}

/* =========================================================
   Contact Section
   ========================================================= */

.slide-contacts-circle-1 {
    width: 70.625rem;
    height: 70.625rem;
    left: -15.625% !important;
    top: 82.59259259% !important;
    bottom: auto;
    right: auto;
}

.slide-contacts-circle-2 {
    width: 8.125rem;
    height: 8.125rem;
    right: -4.0625rem !important;
    top: 50.92592593% !important;
    bottom: auto;
    left: auto !important;
}

.contact-personal-card {
    position: relative;
    z-index: 20;
}

.contact-personal-card-title {
    margin-bottom: 3rem;
}

.contact-personal-card-detail {
    position: relative;
    z-index: 20;
}

.contact-info-item {
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-personal-form .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-input {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 0.75rem 0;
    background: transparent;
}

.contact-form-input:focus {
    border-bottom-color: var(--brand-gold);
    box-shadow: none;
    outline: none;
}

.contact-form-input.is-valid {
    border-bottom-color: #198754;
}

.contact-form-input.is-invalid {
    border-bottom-color: #dc3545;
}

#contactForm .iti {
    width: 100%;
}

.invalid-feedback {
display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.contact-personal-form .btn-success {
    background-color: #5ca595;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.25rem;
}

.contact-personal-form .btn-success:hover {
    background-color: #4a8a7a;
}

/* =========================================================
   Feedback & Helpers
   ========================================================= */
#toastContainer {
    z-index: 1080;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.a-carousel-testimonial .owl-nav button {
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem !important;
}

.a-carousel-testimonial .owl-nav button i {
    font-size: 1rem;
}

.a-carousel-testimonial .owl-dots button,
.carousel-skills .owl-dots button {
    width: 12px;
    height: 12px;
    padding: 1rem;
}