html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;  
}

* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}

.grad-bar {
width: 100%;
height: 0.3em;
background: linear-gradient(90deg, #4dffff, #ff0000, #ff99ff, #ff91f2, #ff6666, #ffd966, #ffb366, #cc6600, #ffff66, #99ff99, #33ff33, #80ffbf, #99ddff, #00aaff);
background-size: 400% 400%;
-webkit-animation: gradbar 25s ease infinite;
-moz-animation: gradbar 25s ease infinite;
animation: gradbar 25s ease infinite;
}

@-webkit-keyframes gradbar {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}}

@-moz-keyframes gradbar {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}}

@keyframes gradbar {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}}

                                                          /* sidebar div */
.side-navbar-div {
background-color: #54B689;
width: 280px;
position: fixed;
top: 0;
bottom: 0;
left: 0;
overflow-y: auto;
overflow-x: hidden;
padding-bottom: 20px;
scrollbar-width: thin;
scrollbar-color: #43926E transparent;
}

.side-navbar-div::-webkit-scrollbar {
width: 8px;
}

.side-navbar-div::-webkit-scrollbar-track {
background: transparent;
}

.side-navbar-div::-webkit-scrollbar-thumb {
background-color: #2e7558;
border-radius: 20px;
border: 2px solid transparent;
background-clip: content-box;
}

.side-navbar-div::-webkit-scrollbar-thumb:hover {
background-color: #255f49;
}


                                                          /* main section div */
.main-section-div {
height: 100%;
width: calc(100% - 280px);
margin-left: 280px;
overflow-y: auto;
}

@media screen and (max-width: 991.98px) {
html, body {
overflow: visible;
overflow-x: hidden;
height: auto;
padding-top: 0 !important;
}

.side-navbar-div {
display: none !important;
}

.main-section-div {
width: 100% !important;
margin-left: 0 !important;
padding-top: 0 !important;
}

                                                          /* Mobile header */
.mobile-header {
display: flex !important;
justify-content: center;
align-items: center;
background-color: #54B689;
padding: 15px 20px;
position: relative;
z-index: 1000;
height: 45px;
}

.mobile-logo {
color: white;
font-size: 25px;
font-weight: 700;
text-decoration: none;
}

.hamburger-btn {
background: none;
border: 1px solid #FFFFFF8C;
border-radius: 3px;
color: white;
font-size: 24px;
cursor: pointer;
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
padding: 5px;
z-index: 1002;
display: flex;
align-items: center;
}

.mobile-nav-overlay {
position: relative;
width: 100%;
background-color: #54B689;
z-index: 999;
max-height: 0;
overflow: hidden;
transition: max-height 0.7s ease-in-out;
margin-top: 0;
top: 0;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
box-sizing: border-box;
}

.mobile-nav-overlay.active {
max-height: 1000px;
}

.mobile-nav-overlay-header {
display: none;
}

.mobile-profile {
text-align: center;
padding: 0px 20px 10px 20px;
}

.mobile-profile-image {
width: 160px;
height: 160px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 15px;
}

.mobile-profile-tagline {
color: #FFFFFF;
font-size: 14px;
margin-bottom: 20px;
padding: 0 20px;
}

.mobile-social-icons {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 40px;
}

.mobile-social-icons a {
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
background-color: white;
border-radius: 50%;
color: #54B689;
text-decoration: none;
}

.mobile-social-icons svg {
width: 18px;
height: 18px;
}

.mobile-nav-menu {
list-style: none;
padding: 0 20px;
margin: 0;
}

.mobile-nav-menu li {
margin-bottom: 15px;
}

.mobile-nav-menu a {
display: flex;
align-items: center;
color: #DDF0E7;
text-decoration: none;
font-size: 18px;
font-weight: 600;
padding: 15px 20px;
border-radius: 8px;
transition: all 0.3s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
background-color: rgba(255, 255, 255, 0.1);
color: #224937;
}

.mobile-nav-menu svg {
margin-right: 15px;
width: 20px;
height: 20px;
}

.mobile-hire-btn {
position: relative;
z-index: 0;
border: none;
border-radius: 6px;
padding: 12px 20px;
cursor: pointer;
width: calc(100% - 40px);
margin: 20px 20px 30px;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
}

.mobile-hire-btn:before {
content: '';
background: linear-gradient(45deg, #54B689, #3B7F60, #3B7F60, #54B689, #9eebb4, #54B689, #3B7F60, #54B689, #3B7F60);
position: absolute;
top: -2px;
left: -2px;
background-size: 400%;
z-index: -1;
filter: blur(5px);
width: calc(100% + 4px);
height: calc(100% + 4px);
animation: glowing 20s linear infinite;
opacity: 0.7;
transition: opacity .3s ease-in-out;
border-radius: 8px;
}

.mobile-hire-btn:after {
z-index: -1;
content: '';
position: absolute;
width: 100%;
height: 100%;
background: #3B7F60;
left: 0;
top: 0;
border-radius: 6px;
transition: all 0.3s ease;
}

.mobile-hire-btn:hover:before {
opacity: 1;
background: linear-gradient(45deg, #ffffff, #e6f7f2, #ffffff, #f0fffa, #ffffff, #e6f7f2, #ffffff, #f0fffa, #ffffff);
animation: glowing 20s linear infinite;
}

.mobile-hire-btn:hover:after {
background: #2d6149;
}

.mobile-hire-btn:active:after {
background: pink;
}

.mobile-hire-btn {
position: relative;
color: white !important;
text-decoration: none;
font-weight: 600;
font-size: 16px;
display: flex;
align-items: center;
z-index: 1;
}

.mobile-hire-btn svg {
margin-right: 8px;
}

@keyframes glowing {
0% { background-position: 0 0; }
50% { background-position: 400% 0; }
100% { background-position: 0 0; }
}

body {
padding-top: 0 !important;
}
}

/* Desktop styles */
@media screen and (min-width: 992px) {
.mobile-header,
.mobile-nav-overlay {
display: none !important;
}

.side-navbar-div {
display: block !important;
width: 280px !important; /* Change from 18% to 280px */
}

.main-section-div {
width: calc(100% - 280px) !important; /* Change from 82% to calc(100% - 280px) */
margin-left: 280px !important; /* Change from 18% to 280px */
}

body {
padding-top: 0 !important;
}
}

.h1-sidebar-name{
padding-top: 30px;
color: white;
font-size: 28px;
font-weight: 700;
}

.h1-mdevs-reset-link-a {
color: inherit;
text-decoration: none;
background: none;
border: none;
padding: 0;
margin: 0;
font: inherit;
cursor: pointer;
}

.h1-mdevs-reset-link-a:hover,
.h1-mdevs-reset-link-a:focus,
.h1-mdevs-reset-link-a:active {
color: inherit;
text-decoration: none;
}

.side-bar-tagline {
color: white;
font-size: 13px;
padding: 1px 25px 5px 25px;
font-weight: 400;
letter-spacing: 0.2px;
line-height: 1.5;
}

.side-bar-tagline-mobile {
color: white;
font-size: 12px;
padding: 10px 25px 10px 25px;
letter-spacing: 0.2px;
line-height: 1.5;
}

/* profile image sidebar */
.navbar-profile-image {
width: 160px;
height: 160px;
border-radius: 50%;
object-fit: cover;
display: block;
margin: 0 auto;
padding-top: 20px;
}

/* intro para sidebar */
.para-sidebar {
color: white;
font-size: 14px;
padding: 17px 25px 5px 25px;
font-weight: 400;
letter-spacing: 0.2px;
line-height: 1.5;
}

.social-icons-div {
display: flex;
justify-content: center;
align-items: center;
padding: 20px 2px;
gap: 11px;
}

.social-icons-div a {
color: #54B689;
display: flex;
justify-content: center;
align-items: center;
width: 36px;
height: 36px;
background-color: white;
border-radius: 50%;
text-decoration: none;
}

.social-icons-div svg {
width: 17px;
height: 17px;
}

.social-icons-div a:hover {
background-color: rgba(255, 255, 255, 0.8);
}

.social-icons-div a:hover svg {
fill: #3c8162;
}

/* navbar list */
nav {
margin-top: 15px;
text-align: center;
}

nav ul {
list-style: none;
width: 70%;
margin: 0 auto;
padding: 0;
display: flex;
flex-direction: column;
align-items: flex-start;
}

nav ul li {
margin-bottom: 10px;
width: 100%;
padding: 0;
}

nav ul li a {
color: #DDF0E7;
display: flex;
align-items: center;
text-decoration: none;
font-size: 16px;
transition: all 0.3s ease;
font-weight: 700;
padding: 8px;
width: fit-content;
}

nav ul li a:hover {
color: #224937;
}

nav ul li a svg {
margin-right: 10px;
width: 18px;
height: 18px;
opacity: 0.9;
transition: opacity 0.3s ease;
}

nav ul li a:hover svg {
opacity: 0.7;
}

nav ul li a.active {
color: #224937;
position: relative;
}

nav ul li a.active svg {
opacity: 1;
}

nav ul li a.active:after {
content: '';
position: absolute;
width: 5px;
height: 5px;
background-color: #224937;
border-radius: 50%;
right: -12px;
top: 50%;
transform: translateY(-50%);
}

nav ul li a.active:hover {
color: #224937;
}

/* hireme button sidebar */
.hire-me-button {
position: relative;
z-index: 0;
border: none;
border-radius: 6px;
padding: 12px 20px;
margin-top: 5px;
cursor: pointer;
width: 35%;
margin: 30px auto;
display: flex;
justify-content: center;
align-items: center;
}

.hire-me-button:before {
content: '';
background: linear-gradient(45deg, #54B689, #3B7F60, #3B7F60, #54B689, #9eebb4, #54B689, #3B7F60, #54B689, #3B7F60);
position: absolute;
top: -2px;
left: -2px;
background-size: 400%;
z-index: -1;
filter: blur(5px);
width: calc(100% + 4px);
height: calc(100% + 4px);
animation: glowing 20s linear infinite;
opacity: 0.7;
transition: opacity .3s ease-in-out;
border-radius: 8px;
}

.hire-me-button:after {
z-index: -1;
content: '';
position: absolute;
width: 100%;
height: 100%;
background: #3B7F60;
left: 0;
top: 0;
border-radius: 6px;
transition: all 0.3s ease;
}

.hire-me-button:hover:before {
opacity: 1;
background: linear-gradient(45deg, #ffffff, #e6f7f2, #ffffff, #f0fffa, #ffffff, #e6f7f2, #ffffff, #f0fffa, #ffffff);
animation: glowing 20s linear infinite;
}

.hire-me-button:hover:after {
background: #2d6149;
}

.hire-me-button:active:after {
background: pink;
}

.hire-me-button a {
position: relative;
color: white !important;
text-decoration: none;
font-weight: 600;
font-size: 16px;
display: flex;
align-items: center;
z-index: 1;
}

.hire-me-button a svg {
margin-right: 8px;
}

@keyframes glowing {
0% { background-position: 0 0; }
50% { background-position: 400% 0; }
100% { background-position: 0 0; }
}

                                                          /* main index */
.index-1st-div {
height: auto;
min-height: 400px;
width: 100%;
background-color: #F6F6F6;
display: flex;
flex-direction: row;
padding: 30px 0;
}

.index-1st-div-left-side {
flex: 1;
padding: 18px 40px 18px 90px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}

.h2-mi {
font-size: 48px;
color: #292929;
margin-top: -24px;
line-height: 1.2;
}

.index-1st-div-right-side {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}

.tagline-fsd {
color: #292929;
font-family: 'Roboto', sans-serif;
font-size: 24px;
font-weight: 300;
margin-top: 10px;
margin-bottom: 20px;
}

.para-1st-div {
font-size: 16px;
color: #555;
font-weight: 400;
letter-spacing: 0.01em;
line-height: 22px;
}

.index-btn-div {
display: flex;
gap: 10px;
margin-top: 24px;
flex-wrap: wrap;
}

.index-1st-div-btn-1,
.index-1st-div-btn-2 {
font-size: 16px;
height: 40px;
min-width: 155px;
background-color: #54B689;
color: white;
border: none;
border-radius: 6px;
display: flex;
justify-content: center;
align-items: center;
padding: 0 11px;
font-weight: 500;
transition: background-color 0.3s ease;
}

.index-1st-div-btn-2 {
background-color: #4F4F4F;
}

.index-1st-div-btn-1:hover {
background-color: #489E76;
cursor: pointer;
}

.index-1st-div-btn-2:hover {
background-color: #3D3D3D;
cursor: pointer;
}

.index-1st-div-right-side-img {
width: 100%;
max-width: 380px;
height: auto;
max-height: 300px;
object-fit: contain;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
}

                                                          /* home - video banner */
.video-banner {
width: 100%;
aspect-ratio: 16/9;
background: #F6F6F6;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
}

.video-banner video {
width: 93%;
height: 100%;
object-fit: cover;
display: block;
background: #F6F6F6;
}

video::cue {
color: transparent;
background: transparent;
}

@media (max-width: 1350px) {
.index-1st-div-left-side {
padding: 18px 30px 18px 50px;
}
}

@media (max-width: 1200px) {
.index-1st-div-left-side {
padding-left: 47px;
}

.h2-mi {
font-size: 42px;
}

.tagline-fsd {
font-size: 22px;
}}

@media (max-width: 992px) {
.index-1st-div-left-side {
padding: 18px 25px 18px 40px;
}

.h2-mi {
font-size: 36px;
margin-top: -15px;
}

.tagline-fsd {
font-size: 20px;
}

.para-1st-div {
font-size: 15px;
}}

@media (max-width: 768px) {
.index-1st-div {
flex-direction: column;
padding: 20px 0;
}

.index-1st-div-left-side {
padding: 18px 30px;
text-align: center;
align-items: center;
order: 2;
}

.index-1st-div-right-side {
order: 1; /* Move video to the top on mobile */
margin-bottom: 20px;
}

.h2-mi {
font-size: 32px;
margin-top: 0;
}

.tagline-fsd {
font-size: 18px;
margin-top: 5px;
margin-bottom: 15px;
}

.para-1st-div {
font-size: 14px;
}

.index-btn-div {
justify-content: center;
}

.video-banner {
height: 220px;
}

.video-banner video {
width: 350px;
margin: 0;
}}

@media (max-width: 576px) {
.index-1st-div-left-side {
padding: 18px 20px;
}

.h2-mi {
font-size: 28px;
}

.tagline-fsd {
font-size: 16px;
}

.para-1st-div {
font-size: 14px;
line-height: 1.4;
}

}

@media (max-width: 390px) {
.video-banner {
height: 180px;
}

.video-banner video {
width: 300px;
}}

@media (max-width: 360px) {
.index-btn-div {
flex-direction: column;
width: 100%;
gap: 15px;
}

.index-1st-div-btn-1,
.index-1st-div-btn-2 {
width: 100%;
}}

                                                          /* a tags links */
.a-links {
color:#54B689;
text-decoration: none;
}

.a-links:hover {
text-decoration: underline;
}

.a-links-btn-nohover {
text-decoration: none;
}

                                                          /* index - what I do section */
.what-i-do-div {
height: auto;
width: 100%;
padding: 48px 90px;
box-sizing: border-box;
}

.h3-what-i-do {
font-size: 32px;
border-left: 5px solid #54B689;
padding-left: 12px;
}

.p-what-i-do {
color: #555;
font-size: 15px;
margin-top: 19px;
font-weight: 400;
line-height: 1.5;
letter-spacing: 0.01em;
margin-bottom: 28px;
}

.what-i-do-card {
width: 25%;
height: 300px;
background-color: #F5F5F5;
}

                                                          /* what i do - btn servcies pricing */
.index-services-btn {
background-color: #54B689;
color: white;
border: none;
border-radius: 6px;
height: 40px;
width: 19%;
min-width: 180px;
max-width: 320px;
cursor: pointer;
font-size: 16px;
font-weight: 700;
transition: background-color 0.3s ease;
display: block;
margin: 30px auto;
line-height: 40px;
text-align: center;
box-sizing: border-box;
}

.index-services-btn:hover {
background-color: #489E76;
cursor: pointer;
}

.index-services-btn svg {
vertical-align: -1px;
}

                                                          /* what I do container */
.skills-container {
width: 100%;
margin: 0 auto;
box-sizing: border-box;
}

.skills-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}

.skill-box {
padding: 20px;
border-radius: 4px;
}

.skill-icon {
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 10px;
}

.skill-icon img {
height: 35px;
}

.skill-box h3 {
margin-top: 0;
margin-bottom: 10px;
font-size: 18px;
}

.skill-box p {
color: #555;
font-size: 14px;
margin-top: 0 19px 0 0;
font-weight: 400;
line-height: 1.5;
letter-spacing: 0.01em;
}

@media (max-width: 1300px) {
.what-i-do-div {
padding: 48px 78px;
}}

@media (max-width: 1200px) {
.skills-grid {
grid-template-columns: repeat(3, 1fr);
}}

@media (max-width: 1050px) {
.what-i-do-div {
padding: 48px 60px;
}}

@media (max-width: 900px) {
.skills-grid {
grid-template-columns: repeat(2, 1fr);
}}

@media (max-width: 600px) {
.skills-grid {
grid-template-columns:2, 1fr;
}}

@media (max-width: 532px) {
.what-i-do-div {
padding: 48px 50px;
}}

@media (max-width: 500px) {
.what-i-do-div {
padding: 48px 40px;
}
.skill-box {
padding: 15px 12px;
}}

@media (max-width: 417px) {
.skill-box {
padding: 15px 3px;
}}

@media (max-width: 390px) {
.what-i-do-div {
padding: 48px 23px;
}}

                                                          /* index featured section */
.featured-projects-index-div {
padding-top: 20px;
padding-bottom: 15px;
margin-top: 20px;
}

.h3-featured-proj-div {
padding: 10px 90px;
}

@media (max-width: 1300px) {
.h3-featured-proj-div {
padding: 9px 78px;
}}

@media (max-width: 1050px) {
.h3-featured-proj-div {
padding: 8px 60px;
}}

@media (max-width: 532px) {
.h3-featured-proj-div {
padding: 7px 50px;
}}

@media (max-width: 500px) {
.h3-featured-proj-div {
padding: 6px 40px;
}}

@media (max-width: 390px) {
.h3-featured-proj-div {
padding: 5px 23px;
}}

.h3-featured-proj {
font-size: 32px;
border-left: 5px solid #54B689;
padding-left: 12px;
}

.index-projects-btn {
background-color: #54B689;
color: white;
border: none;
border-radius: 6px;
height: 40px;
width: 19%;
min-width: 180px;
max-width: 320px;
cursor: pointer;
font-size: 16px;
font-weight: 700;
transition: background-color 0.3s ease;
display: block;
margin: 30px auto;
line-height: 40px;
text-align: center;
box-sizing: border-box;
}

.index-projects-btn:hover {
background-color: #489E76;
cursor: pointer;
}

.index-projects-btn svg {
vertical-align: -1px;
}

                                                          /* index latest blog section */
.latest-blog-index-div {
padding-top: 30px;
padding-bottom: 15px;
margin-top: 20px;
}

.h3-latest-blog-div {
padding: 15px 90px;
}

.h3-latest-blog {
font-size: 32px;
border-left: 5px solid #54B689;
padding-left: 12px;
}

.index-blog-btn {
background-color: #54B689;
color: white;
border: none;
border-radius: 6px;
height: 40px;
width: 19%;
min-width: 180px;
max-width: 320px;
cursor: pointer;
font-size: 16px;
font-weight: 700;
transition: background-color 0.3s ease;
display: block;
margin: 30px auto;
line-height: 40px;
text-align: center;
box-sizing: border-box;
}

.index-blog-btn:hover {
background-color: #489E76;
cursor: pointer;
}

.index-blog-btn svg {
vertical-align: -1px;
}

.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
border: 0;
white-space: nowrap;
}

@media (max-width: 1300px) {
.h3-latest-blog-div {
padding: 9px 78px;
}}

@media (max-width: 1050px) {
.h3-latest-blog-div {
padding: 8px 60px;
}}

@media (max-width: 532px) {
.h3-latest-blog-div {
padding: 7px 50px;
}}

@media (max-width: 500px) {
.h3-latest-blog-div {
padding: 6px 40px;
}}

@media (max-width: 390px) {
.h3-latest-blog-div {
padding: 5px 23px;
}}

                                                          /* portfolio section */
.portfolio-section-1st-div {
width: 100%;
height: auto;
background-color: #F6F6F6;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.portfolio-section-1st-div h1 {
font-size: 34px;
color: #292929;
margin-top: 27px;
}

.portfolio-section-1st-div p {
font-size: 16px;
color: #292929;
padding: 10px 150px 0 150px;
text-align: center;
font-weight: 400;
line-height: 1.3;
letter-spacing: 0.01em;
}

.hire-me-button-portfolio {
position: relative;
z-index: 0;
border: none;
border-radius: 6px;
padding: 12px 20px;
margin-top: 5px;
cursor: pointer;
width: 100px;
margin: 30px auto;
display: flex;
justify-content: center;
align-items: center;
}

.hire-me-button-portfolio:before {
content: '';
background: linear-gradient(45deg, #54B689, #3B7F60, #3B7F60, #54B689, #9eebb4, #54B689, #3B7F60, #54B689, #3B7F60);
position: absolute;
top: -2px;
left: -2px;
background-size: 400%;
z-index: -1;
filter: blur(5px);
width: calc(100% + 4px);
height: calc(100% + 4px);
animation: glowing 20s linear infinite;
opacity: 0.7;
transition: opacity .3s ease-in-out;
border-radius: 8px;
}

.hire-me-button-portfolio:after {
z-index: -1;
content: '';
position: absolute;
width: 100%;
height: 100%;
background: #54B689;
left: 0;
top: 0;
border-radius: 6px;
transition: all 0.3s ease;
}

.hire-me-button-portfolio:hover:before {
opacity: 1;
background: linear-gradient(45deg, #ffffff, #e6f7f2, #ffffff, #f0fffa, #ffffff, #e6f7f2, #ffffff, #f0fffa, #ffffff);
animation: glowing 20s linear infinite;
}

.hire-me-button-portfolio:hover:after {
background: #489E76;
}

.hire-me-button-portfolio:active:after {
background: #54B689;
}

.hire-me-button-portfolio a {
position: relative;
color: white !important;
text-decoration: none;
font-weight: 600;
font-size: 16px;
display: flex;
align-items: center;
z-index: 1;
}

.hire-me-button-portfolio a svg {
margin-right: 8px;
}

@keyframes glowing {
0% { background-position: 0 0; }
50% { background-position: 400% 0; }
100% { background-position: 0 0; }
}

@media (max-width: 700px) {
.portfolio-section-1st-div p {
padding: 10px 50px 0 50px;
}}

@media (max-width: 700px) {
.portfolio-section-1st-div p {
padding: 10px 25px 0 25px;
}}

                                                          /* 2nd div cards portfolio */
.project-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
width: 100%;
margin: 0 auto;
padding: 30px 90px;
box-sizing: border-box;
}

.project-card {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
position: relative;
background-color: #FAFAFA;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin-bottom: 30px;
border: 1px solid #eaeaea;
}

.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-image {
position: relative;
width: 40%;
min-width: 40%;
overflow: hidden;
height: auto;
background: transparent;
display: flex;
align-items: center;
justify-content: center;
}

.glass-bg-img {
position: absolute;
inset: 0;
z-index: 1;
overflow: hidden;
border-radius: 8px;
}

.glass-bg-img img {
width: 100%;
height: 100%;
object-fit: cover;
filter: blur(16px) brightness(1.15) saturate(1.2);
transform: scale(1.1);
opacity: 0.75;
}

.project-image .main-img {
position: relative;
z-index: 2;
width: 100%;
height: 100%;
object-fit: contain;
display: block;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
border-radius: 8px;
background: transparent;
}

.hover-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(220, 220, 220, 0.3);
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
z-index: 3;
}

.project-card:hover .hover-overlay {
opacity: 1;
pointer-events: auto;
}

.case-study-btn {
padding: 12px 20px;
background-color: #4F4F4F;
color: white;
border: none;
border-radius: 4px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transform: translateY(20px);
transition: transform 0.3s ease, background-color 0.3s ease;
z-index: 4;
position: relative;
}

.case-study-btn svg {
vertical-align: -1px;
}

.project-card:hover .case-study-btn {
transform: translateY(0);
text-decoration: none;
}

.case-study-btn:hover {
background-color: #3D3D3D;
}

.project-content {
box-sizing: border-box;
width: 60%;
min-width: 60%;
padding: 20px;
display: flex;
flex-direction: column;
word-wrap: break-word;
overflow-wrap: break-word;
}

.project-title {
margin: 0 0 15px 0;
font-size: 22px;
color: #333;
font-weight: 600;
}

.project-desc {
margin: 0 0 20px;
font-size: 15px;
line-height: 1.6;
color: #666;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
}

.project-client {
margin-top: auto;
padding-top: 15px;
font-size: 14px;
color: #777;
border-top: 1px solid #AFAFAF;
}

.project-type1 {
margin-top: auto;
padding-top: 15px;
font-size: 14px;
color: #777;
}

@media (max-width: 1300px) {
.project-grid {
padding: 48px 78px;
}}

@media (max-width: 1050px) {
.project-grid {
padding: 30px 60px;
}}

@media (max-width: 835px) {
.project-grid {
grid-template-columns: 1fr;
}}

@media (max-width: 532px) {
.project-grid {
padding: 48px 50px;
grid-template-columns: repeat(2, 1fr);
}

.project-card {
flex-direction: column;
}

.project-image,
.project-content {
width: 100%;
min-width: 100%;
}

.project-image {
height: 200px;
}}

@media (max-width: 500px) {
.project-grid {
padding: 48px 40px;
}}

@media (max-width: 390px) {
.project-grid {
grid-template-columns: 1fr !important;
padding: 16px 23px !important;
}

.project-card {
flex-direction: row !important;
}

.project-image,
.project-content {
width: auto !important;
min-width: 150px !important;
}

.project-image {
height: auto !important;
}

.project-desc {
-webkit-line-clamp: 2;
}}

@media (max-width: 355px) {
.project-image {
width: auto !important;
min-width: 130px !important;
}}

                                                          /* resume */
.resume-btn-div {
display: flex;
gap: 10px;
margin-top: 24px;
}

.resume-1st-div-btn-1 {
font-size: 16px;
height: 47px;
width: 240px;
background-color: #54B689;
color: white;
border: none;
border-radius: 6px;
display: flex;
justify-content: center;
align-items: center;
padding: 0 11px;
justify-content: center;
align-items: center;
font-weight: 600;
transition: background-color 0.3s ease;
vertical-align: -1px;
}

.resume-1st-div-btn-1:hover {
background-color: #489E76;
cursor: pointer;
}

.main-wrapper-resume1 {
--theme-color-primary-resume1: #54B689;
--theme-color-secondary-resume1: #34495e;
--theme-text-color-primary-resume1: #2c3e50;
--theme-text-color-secondary-resume1: #95a5a6;
--theme-text-color-light-resume1: #95a5a6;
--theme-border-color-resume1: #e9ecef;
--theme-bg-light-resume1: #ffffff;
}

.main-wrapper-resume1 {
width: 100%;
color: var(--theme-text-color-primary-resume1);
box-sizing: border-box;
}

.main-wrapper-resume1 *,
.main-wrapper-resume1 *::before,
.main-wrapper-resume1 *::after {
box-sizing: border-box;
}

.container-resume1 {
width: 100%;
padding-left: 15px;
padding-right: 15px;
margin-left: auto;
margin-right: auto;
max-width: 1140px;
}

.p-5-resume1 {
padding: 3rem;
}

.px-3-resume1 {
padding-left: 1rem;
padding-right: 1rem;
}

.px-lg-5-resume1 {
padding-left: 3rem;
padding-right: 3rem;
}

.mb-5-resume1 {
margin-bottom: 3rem;
}

.my-5-resume1 {
margin-top: 3rem;
margin-bottom: 3rem;
}

.mx-auto-resume1 {
margin-left: auto;
margin-right: auto;
}

.theme-bg-light-resume1 {
background: var(--theme-bg-light-resume1);
}

.btn-resume1 {
display: inline-block;
font-weight: 400;
text-align: center;
vertical-align: middle;
user-select: none;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: 0.25rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
text-decoration: none;
cursor: pointer;
}

.btn-primary-resume1 {
background-color: var(--theme-color-primary-resume1);
border-color: var(--theme-color-primary-resume1);
color: #fff;
font-weight: bold;
padding: 0.75rem 1.5rem;
}

.btn-primary-resume1:hover {
background-color: #469D6D;
border-color: #469D6D;
color: #fff;
text-decoration: none;
}

.cta-section-resume1 {
background: linear-gradient(45deg, var(--theme-bg-light-resume1), #ffffff);
}

.resume-container-resume1 {
max-width: 1140px;
}

.resume-wrapper-resume1 {
border-radius: 0.5rem;
border: 1px solid var(--theme-border-color-resume1);
}

.shadow-lg-resume1 {
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.resume-wrapper-resume1 img {
display: block;
max-width: 100%;
height: auto;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
object-fit: cover;
}

@media (min-width: 992px) {
.px-lg-5-resume1 {
padding-left: 3rem;
padding-right: 3rem;
}}

@media (max-width: 768px) {
.p-5-resume1 {
padding: 1.5rem;
}}

@media print {
.resume-wrapper-resume1 {
box-shadow: none;
border: none;
}

.shadow-lg-resume1 {
box-shadow: none;
}}

                                                          /* blog */
.blog-section-blog1 * {
box-sizing: border-box;
}

.blog-section-blog1 {
background-color: #fff;
color: #333;
line-height: 1.6;
padding: 50px 0;
}

.container-blog1 {
max-width: 1200px;
margin: 0 auto;
padding: 0 90px;
}

.blog-header-blog1 {
text-align: center;
margin-bottom: 40px;
}

.blog-header-blog1 h2 {
font-size: 28px;
margin-bottom: 10px;
font-weight: 600;
color: #333;
}

.blog-header-blog1 p {
color: #666;
font-size: 16px;
}

.blog-grid-blog1 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.blog-card-blog1 {
background-color: #FAFAFA;
border-radius: 4px;
overflow: hidden;
transition: transform 0.3s ease;
box-shadow: none;
display: none;
}

.blog-card-blog1:hover {
transform: translateY(-5px);
}

.blog-card-blog1:nth-child(-n+6) {
display: block;
}

.blog-image-blog1 {
height: 200px;
overflow: hidden;
}

.blog-image-blog1 img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.blog-card-blog1:hover .blog-image-blog1 img {
transform: scale(1.05);
}

.blog-content-blog1 {
padding: 20px;
}

.blog-title-blog1 {
font-size: 16px;
font-weight: 600;
margin-bottom: 10px;
color: #333;
}

.blog-excerpt-blog1 {
color: #555;
margin-bottom: 15px;
font-size: 14px;
font-weight: 400;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}

.blog-meta-blog1 {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 15px;
font-size: 12px;
color: #888;
}

.read-more-blog1 {
color: #4caf50;
text-decoration: none;
font-weight: 500;
font-size: 14px;
position: relative;
}

.read-more-blog1:after {
content: "...";
margin-left: 2px;
}

.read-more-blog1:hover {
color: #388e3c;
}

.published-date-blog1 {
font-style: italic;
}

.load-more-container-blog1 {
text-align: center;
margin-top: 40px;
}

.load-more-btn-blog1 {
background-color: #4caf50;
color: white;
border: none;
padding: 12px 30px;
font-size: 16px;
font-weight: 500;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
width: 100%;
}

.load-more-btn-blog1:hover {
background-color: #388e3c;
}

@media (max-width: 992px) {
.blog-grid-blog1 {
grid-template-columns: repeat(2, 1fr);
}

.container-blog1 {
padding: 0 60px;
}
}

@media (max-width: 768px) {
.blog-header-blog1 h2 {
font-size: 24px;
}

.blog-header-blog1 p {
font-size: 14px;
}

.container-blog1 {
padding: 0 40px;
}
}

@media (max-width: 576px) {
.blog-grid-blog1 {
grid-template-columns: 1fr;
}

.blog-image-blog1 {
height: 180px;
}

.blog-header-blog1 h2 {
font-size: 22px;
}

.container-blog1 {
padding: 0 20px;
}
}

                                                          /* Contact Container */
.contact-container {
width: 100%;
max-width: 700px;
margin: 0 auto;
padding: 30px 24px;
background: #fff;
border-radius: 10px;
box-sizing: border-box;
box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

@media (max-width: 1200px) {
.contact-container {
max-width: 650px;
padding: 28px 16px;
}}

@media (max-width: 900px) {
.contact-container {
max-width: 99vw;
padding: 22px 8px;
}}

@media (max-width: 600px) {
.contact-container {
max-width: 100vw;
padding: 10px 2vw;
}}

.contact-container-h2 {
text-align: center;
font-size: 2rem;
color: #333;
margin-bottom: 28px;
font-weight: 700;
}

@media (max-width: 600px) {
.contact-container-h2 {
font-size: 1.3rem;
margin-bottom: 19px;
}}

                                                          /* Form Layout */
.form-row {
display: flex;
gap: 18px;
margin-bottom: 18px;
}

@media (max-width: 600px) {
.form-row {
flex-direction: column;
gap: 12px;
}}

                                                          /* Form Fields */
.input-contact1,
.select-contact1,
.textarea-contact1 {
width: 100%;
min-width: 0;
padding: 13px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
color: #555;
outline: none;
transition: border-color 0.3s;
box-sizing: border-box;
background: #fff;
}

.input-contact1:focus,
.select-contact1:focus,
.textarea-contact1:focus {
border-color: #4caf50;
}

.select-contact1 {
width: 100%;
min-width: 0;
box-sizing: border-box;
appearance: none;
background-position: right 15px top 50%;
background-size: 12px auto;
padding-right: 30px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

@media (max-width: 400px) {
.select-contact1 {
font-size: 14px;
padding-right: 12px;
}}

.textarea-contact1 {
resize: vertical;
min-height: 110px;
}

@media (max-width: 600px) {
.textarea-contact1 {
min-height: 70px;
font-size: 15px;
padding: 10px;
}}

.form-group {
margin-bottom: 18px;
}

.info-text {
display: flex;
align-items: center;
margin: 13px 0;
font-size: 14px;
color: #666;
flex-wrap: wrap;
}

.info-icon {
display: inline-flex;
justify-content: center;
align-items: center;
width: 20px;
height: 20px;
background-color: #54B689;
color: white;
border-radius: 50%;
margin-right: 10px;
font-size: 12px;
font-weight: bold;
}

.highlight-link {
color: #54B689;
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
}
.highlight-link:hover {
text-decoration: underline;
color: #489E76;
}

.submit-btn {
background-color: #54B689;
color: white;
border: none;
padding: 14px 0;
font-size: 16px;
font-weight: 600;
border-radius: 6px;
cursor: pointer;
width: 100%;
margin: 20px 0 0 0;
transition: background 0.22s;
display: block;
}
.submit-btn:hover {
background-color: #489E76;
}

@media (max-width: 550px) {
.submit-btn {
width: 100%;
font-size: 15px;
padding: 14px 0;
margin-top: 16px;
}}

.contact-icons-div {
display: flex;
justify-content: center;
align-items: center;
padding: 10px 2px;
gap: 11px;
}
.contact-icons-div a {
color: #54B689;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
padding: 0 5px;
border-radius: 50%;
transition: background 0.2s;
}
.contact-icons-div svg {
width: 20px;
height: 20px;
}
.contact-icons-div a:hover {
background-color: rgba(255,255,255,0.8);
}
.contact-icons-div a:hover svg {
fill: #3c8162;
}

.mailto-contact1 {
text-decoration: none;
color: #54B689;
}
.mailto-contact1:hover {
text-decoration: underline;
color: #54B689;
}

                                                          /* services */
.services-section-services1 {
padding: 50px 90px;
background-color: #fff;
}

.services-container-services1 {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.services-title-services1 {
text-align: center;
font-size: 28px;
margin-bottom: 30px;
color: #333;
}

.services-table-services1 {
width: 100%;
overflow-x: auto;
margin-bottom: 50px;
}

.services-table-services1 table {
width: 100%;
border-collapse: collapse;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.services-table-services1 th, 
.services-table-services1 td {
padding: 15px;
text-align: center;
border: 1px solid #e6e6e6;
}

.services-table-services1 th:first-child, 
.services-table-services1 td:first-child {
text-align: left;
font-weight: 500;
background-color: #fcfcfc;
}

.services-table-services1 th {
background-color: #f9f9f9;
font-weight: 500;
}

.service-header-services1 {
font-weight: 600;
font-size: 18px;
padding: 20px 15px;
}

.wordpress-services1 {
color: #21759b;
}

.custom-services1 {
color: #4285f4;
}

.ecommerce-services1 {
color: #0063c6;
}

.description-row-services1 td {
text-align: left;
font-size: 14px;
line-height: 1.5;
padding: 20px 15px;
}

.feature-title-services1 {
font-weight: 500;
}

.feature-description-services1 {
font-weight: normal;
font-size: 12px;
color: #666;
margin-top: 5px;
font-style: italic;
}

.highlight-services1 {
font-weight: 500;
}

.check-services1 {
color: #4caf50;
font-size: 1.2rem;
}

.partial-services1 {
color: #ff9800;
font-size: 0.9rem;
}

.dash-services1 {
color: #999;
}

.action-button-services1 {
display: inline-block;
padding: 5px;
background-color: #54B689;
color: white;
text-decoration: none;
border-radius: 4px;
font-weight: 500;
transition: background-color 0.3s;
width: 50%;
max-width: 150px;
}

.action-button-services1:hover {
background-color: #489E76;
}

.action-row-services1 td {
padding: 20px 15px;
}

.additional-services-services1 {
margin-top: 50px;
}

.additional-title-services1 {
text-align: center;
font-size: 24px;
margin-bottom: 30px;
color: #333;
}

.services-grid-services1 {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 25px;
}

.service-card-services1 {
background: #f9f9f9;
padding: 25px;
border-radius: 8px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.service-card-services1:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-icon-services1 {
font-size: 2.5rem;
margin-bottom: 15px;
color: #54B689;
}

.service-name-services1 {
font-size: 18px;
margin-bottom: 10px;
color: #333;
}

.service-desc-services1 {
font-size: 14px;
color: #666;
margin-bottom: 20px;
line-height: 1.5;
}

.service-link-services1 {
color: #4caf50;
text-decoration: none;
font-weight: 500;
font-size: 14px;
display: inline-block;
transition: color 0.3s;
}

.service-link-services1:hover {
color: #388e3c;
}

@media (max-width: 768px) {
.services-section-services1 {
padding: 30px 15px;
}

.services-table-services1 {
overflow-x: auto;
}

.services-title-services1 {
font-size: 24px;
}

.service-header-services1 {
font-size: 16px;
padding: 15px 10px;
}

.description-row-services1 td {
font-size: 13px;
}

.services-grid-services1 {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
}}

@media (max-width: 576px) {
.services-grid-services1 {
grid-template-columns: 1fr;
}

.services-table-services1 table, 
.services-table-services1 thead, 
.services-table-services1 tbody, 
.services-table-services1 th, 
.services-table-services1 td, 
.services-table-services1 tr {
display: block;
}

.services-table-services1 thead tr {
position: absolute;
top: -9999px;
left: -9999px;
}

.services-table-services1 tr {
margin-bottom: 20px;
border: 1px solid #e6e6e6;
}

.services-table-services1 td {
border: none;
border-bottom: 1px solid #e6e6e6;
position: relative;
padding-left: 50%;
text-align: right;
}

.services-table-services1 td:first-child {
text-align: center;
font-weight: 600;
background-color: #f9f9f9;
padding-left: 15px;
}

.services-table-services1 td:before {
position: absolute;
top: 15px;
left: 15px;
width: 45%;
padding-right: 10px;
white-space: nowrap;
text-align: left;
font-weight: 500;
}

.services-table-services1 td:nth-of-type(1):before { content: ""; }
.services-table-services1 td:nth-of-type(2):before { content: "WordPress:"; }
.services-table-services1 td:nth-of-type(3):before { content: "Custom:"; }
.services-table-services1 td:nth-of-type(4):before { content: "E-Commerce:"; }

.description-row-services1 td {
text-align: right;
min-height: 80px;
}

.action-button-services1 {
width: 100%;
max-width: none;
}

.action-row-services1 td:first-child {
display: none;
}}

                                                          /* FAQs */
.faq-section-faqs1 {
padding: 60px 20px;
}

.faq-container-faqs1 {
max-width: 800px;
margin: 0 auto;
}

.faq-heading-faqs1 {
text-align: center;
font-size: 28px;
margin-bottom: 30px;
color: #4F4F4F;
}

.faq-item-faqs1 {
border: 1px solid #E8E8E8;
margin-bottom: 15px;
border-radius: 6px;
overflow: hidden;
background-color: #FAFAFA;
transition: all 0.3s ease;
}

.faq-question-faqs1 {
width: 100%;
padding: 16px 20px;
text-align: left;
background-color: #FAFAFA;
border: none;
font-size: 16px;
font-weight: 600;
cursor: pointer;
color: #333;
position: relative;
}

.faq-question-faqs1::after {
content: '+';
position: absolute;
right: 20px;
font-size: 22px;
transition: transform 0.3s ease;
}

.faq-question-faqs1.active::after {
content: '-';
}

.faq-answer-faqs1 {
max-height: 0;
overflow: hidden;
padding: 0 20px;
font-size: 14px;
font-weight: 400;
color: #555;
transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-faqs1.open {
max-height: 300px;
padding: 16px 20px;
}

                                                          /* Posts */
.post-wrapper-posts {
background: #fff;
padding: 10px 20px;
}

.post-container-posts {
max-width: 760px;
margin: 0 auto;
color: #333;
}

.post-title-posts {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 10px;
}

.post-meta-posts {
font-size: 0.9rem;
color: #777;
margin-bottom: 40px;
}

.post-image-posts img {
width: 100%;
border-radius: 6px;
display: block;
}

.post-caption-posts {
font-size: 0.85rem;
color: #aaa;
margin-top: 8px;
}

.post-content-posts p {
line-height: 1.7;
margin-bottom: 1.5rem;
}

.post-heading-posts {
font-size: 1.5rem;
margin-top: 2rem;
margin-bottom: 1rem;
}

.post-subheading-posts {
font-size: 1.1rem;
margin-top: 1.5rem;
margin-bottom: 0.8rem;
}

.post-code-posts {
background: #f5f5f5;
padding: 16px;
border-radius: 4px;
overflow-x: auto;
margin-bottom: 1.5rem;
font-family: monospace;
font-size: 0.95rem;
color: #444;
}

.post-list-posts {
margin-left: 1.5rem;
margin-bottom: 1.5rem;
}

.post-quote-posts {
border-left: 4px solid #ccc;
padding-left: 16px;
color: #555;
font-style: italic;
margin: 1.5rem 0;
}

.post-nav-posts {
display: flex;
justify-content: space-between;
margin-top: 60px;
}

.post-nav-link-posts {
color: #54B689;
text-decoration: none;
font-weight: 600;
}

.post-nav-link-posts:hover {
text-decoration: underline;
}

                                                          /* Next Old Post Navigation */
.post-nav-posts {
display: flex;
justify-content: space-between;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eee;
}

.post-nav-link-posts {
text-decoration: none;
color: #0066cc;
padding: 8px 12px;
border-radius: 4px;
transition: all 0.2s ease;
}

.post-nav-link-posts:hover:not(.disabled) {
background-color: #f0f0f0;
}

.post-nav-link-posts.disabled {
color: #aaa;
cursor: not-allowed;
pointer-events: none;
}

                                                          /* Breadcrumbs styles blog */
.breadcrumbs-container {
margin-bottom: 20px;
margin-top: 40px;
padding: 10px 15px;
background-color: #f8f9fa;
border-radius: 5px;
}

.breadcrumbs {
display: flex;
align-items: center;
font-size: 14px;
}

.breadcrumb-home {
color: #6c757d;
display: flex;
align-items: center;
}

.breadcrumb-home:hover {
color: #0d6efd;
}

.breadcrumb-separator {
color: #adb5bd;
margin: 0 8px;
font-weight: 400;
}

.breadcrumb-link {
color: #6c757d;
text-decoration: none;
}

.breadcrumb-link:hover {
color: #0d6efd;
text-decoration: underline;
}

                                                          /* Project View Styles */
.container-projectsview1 {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
line-height: 1.6;
color: #333;
}

.breadcrumbs-container-projectsview1 {
margin-bottom: 20px;
padding: 10px 15px;
background-color: #f8f9fa;
border-radius: 5px;
}

.breadcrumbs-projectsview1 {
display: flex;
align-items: center;
font-size: 14px;
}

.breadcrumb-home-projectsview1 {
color: #6c757d;
display: flex;
align-items: center;
}

.breadcrumb-home-projectsview1:hover {
color: #0d6efd;
}

.breadcrumb-separator-projectsview1 {
color: #adb5bd;
margin: 0 8px;
font-weight: 400;
}

.breadcrumb-link-projectsview1 {
color: #6c757d;
text-decoration: none;
}

.breadcrumb-link-projectsview1:hover {
color: #0d6efd;
text-decoration: underline;
}

.breadcrumb-current-projectsview1 {
color: #0d6efd;
font-weight: 500;
max-width: 300px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.header-projectsview1 {
text-align: center;
margin-bottom: 40px;
padding-bottom: 20px;
}

.title-projectsview1 {
font-size: 32px;
margin-bottom: 12px;
color: #222;
font-weight: 600;
}

.intro-projectsview1 {
max-width: 800px;
margin: 0 auto;
color: #555;
font-size: 16px;
line-height: 1.5;
}

.client-section-projectsview1 {
display: flex;
gap: 30px;
margin-bottom: 50px;
}

.client-image-container-projectsview1 {
flex: 0 0 35%;
min-width: 0;
}

.client-image-projectsview1 {
width: 100%;
height: auto;
border-radius: 5px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.client-details-projectsview1 {
flex: 0 0 65%;
min-width: 0;
}

.client-name-projectsview1 {
font-size: 22px;
margin-bottom: 15px;
color: #222;
font-weight: 600;
}

.client-info-row-projectsview1 {
display: flex;
align-items: center;
margin-bottom: 8px;
font-size: 14px;
}

.info-icon-projectsview1 {
display: flex;
width: 16px;
margin-right: 8px;
color: #555;
}

.info-label-projectsview1 {
font-weight: 500;
margin-right: 5px;
color: #555;
}

.info-value-projectsview1 {
color: #333;
}

.client-description-projectsview1 {
margin: 15px 0;
color: #555;
font-size: 14px;
line-height: 1.5;
}

.project-requirements-projectsview1 {
margin-top: 15px;
}

.requirements-title-projectsview1 {
font-size: 16px;
margin-bottom: 10px;
color: #222;
font-weight: 600;
}

.requirements-list-projectsview1 {
padding-left: 18px;
margin-top: 0;
}

.requirement-item-projectsview1 {
margin-bottom: 8px;
color: #555;
font-size: 14px;
}

.overview-section-projectsview1,
.challenge-section-projectsview1,
.approach-section-projectsview1,
.results-section-projectsview1,
.testimonial-section-projectsview1 {
margin-bottom: 40px;
}

.section-title-projectsview1 {
font-size: 22px;
margin-bottom: 16px;
color: #222;
position: relative;
font-weight: 600;
}

.section-text-projectsview1 {
margin-bottom: 20px;
color: #555;
font-size: 14px;
line-height: 1.5;
}

.video-container-projectsview1 {
margin: 30px 0;
width: 100%;
}

.youtube-lazy-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
background-color: #000;
border-radius: 5px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
}

.youtube-lazy-container img {
width: 100%;
top: 0;
left: 0;
position: absolute;
object-fit: cover;
height: 100%;
}

.youtube-lazy-container .play-button {
width: 68px;
height: 48px;
background-color: rgba(0,0,0,0.7);
border-radius: 14px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
}

.youtube-lazy-container .play-button::after {
content: "";
display: block;
position: absolute;
top: 14px;
left: 26px;
width: 0;
height: 0;
border-style: solid;
border-width: 10px 0 10px 18px;
border-color: transparent transparent transparent #fff;
}

.youtube-lazy-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}

.metrics-container-projectsview1 {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin: 30px 0;
}

.metric-card-projectsview1 {
background-color: #f8f9fa;
border-radius: 5px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.metric-header-projectsview1 {
padding: 10px;
font-weight: 500;
color: white;
font-size: 14px;
text-align: center;
}

.metric-header-projectsview1.efficiency {
background-color: #4CAF50;
}

.metric-header-projectsview1.satisfaction {
background-color: #2196F3;
}

.metric-header-projectsview1.sales {
background-color: #FF9800;
}

.metric-header-projectsview1.cost {
background-color: #9C27B0;
}

.metric-value-projectsview1 {
font-size: 24px;
font-weight: 600;
padding: 10px;
text-align: center;
}

.metric-direction-up-projectsview1,
.metric-direction-down-projectsview1 {
font-size: 13px;
font-weight: normal;
padding: 2px 5px;
border-radius: 3px;
margin-left: 3px;
}

.metric-direction-up-projectsview1 {
background-color: rgba(76, 175, 80, 0.1);
color: #4CAF50;
}

.metric-direction-down-projectsview1 {
background-color: rgba(244, 67, 54, 0.1);
color: #F44336;
}

.metric-description-projectsview1 {
padding: 0 10px 10px;
font-size: 13px;
color: #666;
text-align: center;
}

.testimonial-container-projectsview1 {
display: flex;
background-color: #f8f9fa;
border-radius: 5px;
padding: 20px;
margin-top: 20px;
}

.testimonial-icon-projectsview1 {
margin-right: 15px;
color: #4CAF50;
flex-shrink: 0;
}

.testimonial-content-projectsview1 {
flex: 1;
}

.testimonial-text-projectsview1 {
font-size: 15px;
color: #555;
font-style: italic;
margin-bottom: 15px;
line-height: 1.5;
}

.testimonial-author-container-projectsview1 {
display: flex;
align-items: center;
}

.testimonial-author-image-projectsview1 {
width: 40px;
height: 40px;
border-radius: 50%;
overflow: hidden;
margin-right: 12px;
}

.testimonial-author-image-projectsview1 img {
width: 100%;
height: 100%;
object-fit: cover;
}

.testimonial-author-name-projectsview1 {
font-weight: 600;
color: #333;
font-size: 14px;
}

.testimonial-author-position-projectsview1 {
font-size: 13px;
color: #666;
}

.cta-section-projectsview1 {
text-align: center;
background-color: #f8f9fa;
padding: 40px 20px;
border-radius: 5px;
margin-top: 50px;
}

.cta-title-projectsview1 {
font-size: 24px;
margin-bottom: 12px;
color: #222;
font-weight: 600;
}

.cta-text-projectsview1 {
max-width: 600px;
margin: 0 auto 20px;
color: #555;
font-size: 14px;
}

.cta-button-projectsview1 {
display: inline-block;
background-color: #54B689;
color: white;
padding: 10px 24px;
border-radius: 4px;
text-decoration: none;
font-weight: 500;
font-size: 14px;
transition: background-color 0.3s;
}

.cta-button-projectsview1:hover {
background-color: #489E76;
}

.projects-nav-projectsview1 {
display: flex;
justify-content: space-between;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eee;
}

.projects-nav-link-projectsview1 {
text-decoration: none;
color: #0066cc;
padding: 8px 12px;
border-radius: 4px;
transition: all 0.2s ease;
font-size: 14px;
}

.projects-nav-link-projectsview1:hover:not(.disabled) {
background-color: #f0f0f0;
}

.projects-nav-link-projectsview1.disabled {
color: #aaa;
cursor: not-allowed;
pointer-events: none;
}

@media (max-width: 1024px) {
.metrics-container-projectsview1 {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}}

@media (max-width: 768px) {
.client-section-projectsview1 {
flex-direction: column;
}

.client-image-container-projectsview1 {
flex: 0 0 100%;
}

.client-details-projectsview1 {
flex: 0 0 100%;
}

.testimonial-container-projectsview1 {
flex-direction: column;
}

.testimonial-icon-projectsview1 {
margin-bottom: 15px;
margin-right: 0;
}

.breadcrumb-current-projectsview1 {
max-width: 150px;
}}

@media (max-width: 576px) {
.title-projectsview1 {
font-size: 24px;
}

.intro-projectsview1 {
font-size: 15px;
}

.metrics-container-projectsview1 {
grid-template-columns: 1fr;
}

.metric-value-projectsview1 {
font-size: 22px;
}

.section-title-projectsview1 {
font-size: 20px;
}

.cta-title-projectsview1 {
font-size: 22px;
}

.cta-section-projectsview1 {
padding: 30px 15px;
}}

