<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
background-image:url("img/marbleBG.jpg");
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
box-shadow: 0 0 30px rgba(0,0,0,0.1);
}
/* Header Section */
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 20px;
border-bottom: 3px solid #d4a574;
flex-wrap: wrap;
gap: 20px;
}
.profile-section {
display: flex;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}

.profile-img {
width: 200px;
height: 200px;
border-radius: 10px;
border: 8px solid white;
box-shadow: 0 5px 20px rgba(0,0,0,0.2);
object-fit: cover;
}







.badges {
display: flex;
flex-direction: column;
gap: 15px;
}
.badge {
padding: 10px 20px;
border-radius: 25px;
font-weight: bold;
display: inline-block;
text-align: center;
}
.premium-badge {
background: linear-gradient(135deg, #f4c430 0%, #d4a574 100%);
color:#ffffff;
 
clip-path: rectangle(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
padding: 12px 30px;
}
.skill-badges {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.skill-badge {
padding: 8px 20px;
border-radius: 20px;
color: white;
font-size: 14px;
display: flex;
align-items: center;
gap: 8px;

}
 
.eco {
 background: linear-gradient(140deg, #d28d0d 80%, #ffffff 100%); 
}
 
.info-section {
text-align: right;
}
.since-badge {
background: #27ae60;
color: white;
padding: 8px 15px;
border-radius: 5px;
display: inline-flex;
align-items: center;
gap: 5px;
margin-bottom: 10px;
}
.flags {
display: flex;
gap: 10px;
justify-content: flex-end;
margin-bottom: 10px;
}
.flag {
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: white;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.languages {
font-size: 18px;
color: #5a3c1a;
}
/* Section Headings */
.section-title {
text-align: center;
font-size: 36px;
color: #1a3a52;
margin: 50px 0 30px;
position: relative;
padding-bottom: 15px;
}
.section-title::before,
.section-title::after {
content: '';
position: absolute;
bottom: 0;
height: 3px;
background: linear-gradient(90deg, transparent, #d4a574, transparent);
}
.section-title::before {
left: 0;
right: 50%;
margin-right: 10px;
}
.section-title::after {
right: 0;
left: 50%;
margin-left: 10px;
}

/* About Section */
.about-text {
text-align: center;
font-size: 18px;
color: #5a3c1a;
padding: 20px 40px;
background: white;
border-radius: 10px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
margin: 20px 0;
}

/* Portfolio Grid */
.portfolio-grid {
display: grid;
grid-template-columns: auto auto auto auto;
gap: 15px;
margin: 25px 0;
}

.portfolio-item {
position: relative;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
cursor: pointer;
transition: transform 0.3s ease;
}

.portfolio-item:hover {
transform: scale(1.05);
}

.portfolio-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}


/* Video Section */
.video-container {
max-width: 600px;
margin: 30px auto;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
background: #000;
}
.video-thumbnail {
position: relative;
width: 100%;
cursor: pointer;
}
.video-thumbnail img {
width: 100%;
display: block;
}
.play-button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background: rgba(255,255,255,0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}
.play-button:hover {
background: white;
transform: translate(-50%, -50%) scale(1.1);
}
.play-button::after {
content: '';
width: 0;
height: 0;
border-left: 25px solid #333;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
margin-left: 5px;
}


/* Process Section */
.process-steps {
display: flex;
justify-content: space-around;
align-items: center;
margin: 40px 0;
flex-wrap: wrap;
gap: 20px;
}
.process-step {
text-align: center;
flex: 1;
min-width: 250px;
}
.step-number {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #d4a574 0%, #8b6914 100%);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
font-weight: bold;
margin: 0 auto 15px;
box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.step-img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
margin-bottom: 10px;
}
.step-title {
font-size: 18px;
color: #1a3a52;
font-weight: bold;
}
.arrow {
font-size: 40px;
color: #d4a574;
align-self: center;
}
/* CTA Buttons */
.cta-section {
display: flex;
justify-content: center;
gap: 30px;
margin: 50px 0 30px;
flex-wrap: wrap;
}
.cta-button {
padding: 15px 40px;
font-size: 20px;
font-weight: bold;
border: none;
border-radius: 30px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.enquire-btn {
background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
color: white;
box-shadow: 0 5px 15px rgba(39,174,96,0.4);
}
.enquire-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(39,174,96,0.6);
}
.bulk-btn {
background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
color: #5a3c1a;
box-shadow: 0 5px 15px rgba(243,156,18,0.4);
}
.bulk-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(243,156,18,0.6);
}

/* Modal */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.9);
align-items: center;
justify-content: center;
}
.modal-content {
max-width: 90%;
max-height: 90%;
}
.close {
position: absolute;
top: 20px;
right: 40px;
color: white;
font-size: 40px;
font-weight: bold;
cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
.header {
flex-direction: column;
text-align: center;
}
.info-section {
text-align: center;
}
.flags {
justify-content: center;
}
.section-title {
font-size: 28px;
}
.portfolio-grid {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.arrow {
display: none;
}
}



.golden-btn {
display: inline-block;
outline: none;
font-family: inherit;
font-size: 1em;
box-sizing: border-box;
border: none;
border-radius: .3em;
height: 2.75em;
line-height: 2.5em;
text-transform: uppercase;
padding: 0 1em;
box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(110,80,20,.4),
inset 0 -2px 5px 1px rgba(139,66,8,1),
inset 0 -1px 1px 3px rgba(250,227,133,1);
background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
border: 1px solid #a55d07;
color: rgb(120,50,5);
text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
cursor: pointer;
transition: all .2s ease-in-out;
background-size: 100% 100%;
background-position:center;
}
.golden-btn:focus,
.golden-btn:hover {
background-size: 150% 150%;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23),
inset 0 -2px 5px 1px #b17d10,
inset 0 -1px 1px 3px rgba(250,227,133,1);
border: 1px solid rgba(165,93,7,.6);
color: rgba(120,50,5,.8);
}
.golden-btn:active {
box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(110,80,20,.4),
inset 0 -2px 5px 1px #b17d10,
inset 0 -1px 1px 3px rgba(250,227,133,1);
}
</style>