
:root {
--ocean: #222c38;
--gold: #bfa163;
}
body {
background-color: #fff;
font-family: "Changa", sans-serif;
font-optical-sizing: auto;
background-color: #f7f7f7;
overflow-x: hidden;
margin: 0;
padding: 0;
box-sizing: border-box;
}
img {
user-select: none;
-webkit-user-drag: none;
pointer-events: none;
}
html {
scroll-behavior: smooth;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
color: inherit;
}
header {
  background-color: rgb(34, 44, 56);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 75px;
  display: flex;
  padding: 0 20px;
  border-bottom: 1px solid rgba(191, 161, 99, 0.15);
  
  /* Hidden State (Default) */
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none; /* Prevents clicking links while hidden */
  transition: transform 0.6s ease-in-out, opacity 0.6s ease;
}

/* Shown State */
header.header-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 900px) {
header {
display: none;
}
.top-cont-nav{
display: none !important;
}
}
.leftheader {
display: flex;
align-items: center;
z-index: 1;
}

.leftheader a{
display: flex;
align-items: center;
}
.leftheader img {
width: 40px;
transition: transform 0.3s ease;
}
.leftheader img:hover {
transform: scale(1.05);
}

.midheader{
display: flex;
justify-content: center !important;
align-items: center !important;
width: 100%;
}

.midheader nav ul{
display: flex;
list-style: none;
gap: 25px;
color: var(--gold);
transform: translateX(30px) ;
}

.midheader nav ul li{
cursor: pointer;
transition: all 0.3s ease-in-out;
font-size: 1.05rem;
font-weight: 500;
letter-spacing: 0.5px;
}

.midheader nav ul li::after{
content: "";
display: block;
width: 0;
height: 2px;
background-color: var(--gold);
transition: width 0.3s ease-in-out;
margin-top: 3px;
}
.midheader nav ul li:hover{
color: #fff;
}
.midheader nav ul li:hover::after{
width: 100%;
}

.tc-vid {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
filter: brightness(0.7);
}
.cont-overlay {
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(34, 44, 56, 0.4) 0%, rgba(34, 44, 56, 0.7) 100%);
gap: 5%;
}
@media (max-width: 1200px) {
.cont-overlay {
flex-direction: column;
}
.highlighter h1{
font-size: 1.2rem !important;
margin-top: -20px;
}
.highlighter h2{
font-size: 1.2rem !important;
margin-top:15px;
margin-bottom: 15px;
}
}
.logo-cont {
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
align-items: center;
filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}
.highlighter{
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
align-items: center;
color: white;
}
.highlighter h1{
font-size: 2.5rem;
font-weight: 800;
margin-bottom: -20px;
background: linear-gradient(to bottom, #f1e4c3 0%, #bfa163 50%, #8a6e3d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
}

.highlighter h1 span{
    color: white;
    background: linear-gradient(to bottom, #f1e4c3 0%, #bfa163 50%, #8a6e3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: white;
    display: inline-block;
}
.highlighter h2{
font-size: 2.4rem;
font-weight: 900;
color: white;
opacity: 0.9;
}
.CTA-btn {
    font-family: "Changa", sans-serif !important;
    background-color: var(--gold);
    color: var(--ocean);
    border: none;
    /* Increased vertical padding to ensure total height is at least 48px */
    padding: 15px 35px; 
    font-size: 16px; /* Slightly larger for better readability */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    z-index: 3;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top:10px
}

.CTA-btn:hover{
background-color: white;
color: black;
box-shadow: 0 10px 20px rgba(198, 183, 73, 0.5);
border: white 2px solid;
}
.logo-cont img {
width: 200px;
margin-bottom: 10px;
animation: luxuryPulse 5s infinite ease-in-out;
}
.logo-cont h1 {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: -20px;
background: linear-gradient(to bottom, #f1e4c3 0%, #bfa163 50%, #8a6e3d 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
}
.logo-cont h2 {
font-size: 2.4rem;
font-weight: 300;
color: var(--gold);
opacity: 0.9;
margin-bottom: -12px;
}
@keyframes luxuryPulse {
0%, 100% { transform: scale(1); filter: brightness(1); }
50% { transform: scale(1.03); filter: brightness(1.1); }
}
@keyframes luxuryZoom {
from { transform: scale(1);
filter: brightness(0.6) contrast(1.1);
}
to { transform: scale(1.8);
filter: brightness(0.6) contrast(0.8);}
}
.nav-icon2 {
width: 60px;
position: fixed;
top: 38px;
right: 14px;
transform: rotate(0deg);
transition: .5s ease-in-out;
cursor: pointer;
z-index: 3000;
scale: 0.5;
display: none;
}
@media screen and (max-width: 900px) {
.nav-icon2 { display: block; }
.top-container { height: 100vh; }
.logo-cont img { width: 130px; }
.logo-cont h1 { font-size: 2rem; }
.logo-cont h2 { font-size: 1.9rem; }
}
.nav-icon2{
width: 60px;
position: fixed;
top: 38px;
right: 14px;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
cursor: pointer;
z-index: 3000;
scale: 0.5;
display: none;
}
.nav-icon2 span {
display: block;
position: absolute;
height: 9px;
width: 50%;
background: var(--gold);
opacity: 1;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}
.nav-icon2 span:nth-child(even) {
left: 50%;
border-radius: 0 9px 9px 0;
}
.nav-icon2 span:nth-child(odd) {
left:0px;
border-radius: 9px 0 0 9px;
}
.nav-icon2 span:nth-child(1), .nav-icon2 span:nth-child(2) {
top: 0px;
}
.nav-icon2 span:nth-child(3), .nav-icon2 span:nth-child(4) {
top: 18px;
}
.nav-icon2 span:nth-child(5), .nav-icon2 span:nth-child(6) {
top: 36px;
}
.nav-icon2.open span:nth-child(1),.nav-icon2.open span:nth-child(6) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.nav-icon2.open span:nth-child(2),.nav-icon2.open span:nth-child(5) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.nav-icon2.open span:nth-child(1) {
left: 5px;
top: 7px;
}
.nav-icon2.open span:nth-child(2) {
left: calc(50% - 5px);
top: 7px;
}
.nav-icon2.open span:nth-child(3) {
left: -50%;
opacity: 0;
}
.nav-icon2.open span:nth-child(4) {
left: 100%;
opacity: 0;
}
.nav-icon2.open span:nth-child(5) {
left: 5px;
top: 29px;
}
.nav-icon2.open span:nth-child(6) {
left: calc(50% - 5px);
top: 29px;
}
@media screen and (max-width: 900px){
.nav-icon2{
display: block;
}
}
.success-pillars-wrapper {
width: 100%;
padding: 0 10%;
box-sizing: border-box;
overflow-x: hidden;
overflow-y: hidden;
}
.success-pillars-heading {
font-size: 2.5rem;
font-weight: 700;
text-align: center;
margin-bottom: 50px;
color: var(--ocean);
}
.success-pillars-heading::after {
content: "";
display: block;
width: 60px;
height: 3px;
background: var(--gold);
margin: 5px auto 0;
}
.pillar-flow-container {
display: flex;
justify-content: space-between;
position: relative;
margin-top: 50px;
padding-bottom: 30px;
}
.pillar-flow-container::before {
content: '';
position: absolute;
top: 30px;
left: 0;
right: 0;
height: 2px;
background-color: var(--gold);
z-index: 0;
}
.pillar-flow-item {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
position: relative;
z-index: 1;
padding: 0 15px;
box-sizing: border-box;
}
.pillar-flow-circle {
width: 60px;
height: 60px;
background-color: var(--ocean);
border-top-left-radius: 30%;
border-bottom-right-radius: 30%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 600;
color: #333333;
margin-bottom: 20px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
transition: transform 0.2s ease-in-out !important;
}
.pillar-flow-circle:hover {
transform: scale(1.2) !important;
}
.pillar-flow-title {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 8px;
color: var(--pillar-text-color);
min-height: 2.5em;
line-height: 1.2;
}
.pillar-flow-description {
font-size: 0.85rem;
color: var(--general-text-color);
line-height: 1.4;
text-align: right;
}
.pillar-flow-circle img{
width: 40px;
height: 40px;
}
.pillar-flow-circle svg{
width: 40px;
height: 40px;
}
.goalssvg{
width: 30px !important;
height: 30px !important;
}
@media (max-width: 900px) {
.success-pillars-heading {
font-size: 2rem;
}
.pillar-flow-circle img{
width: 30px;
height: 30px;
}
.pillar-flow-container {
flex-direction: column;
align-items: flex-start;
margin-top: 30px;
padding-left: 70px;
padding-bottom: 0;
}
.pillar-flow-container::before {
top: 0;
left: 30px;
bottom: 0;
width: 2px;
height: 100%;
background-color: #EEEEEE;
}
.pillar-flow-item {
flex-direction: row;
text-align: left;
align-items: flex-start;
margin-bottom: 40px;
padding: 0;
width: 100%;
margin-left: -70px;
}
.pillar-flow-circle {
margin-left: 25px;
margin-bottom: 0;
flex-shrink: 0;
}
.pillar-flow-content {
display: flex;
flex-direction: column;
flex-grow: 1;
}
.pillar-flow-title {
min-height: unset;
font-size: 1rem;
text-align: right;
}
.pillar-flow-description {
font-size: 0.8rem;
}
}
@media (max-width: 600px) {
.pillar-flow-container {
padding-left: 55px;
}
.pillar-flow-container::before {
left: 25px;
}
.pillar-flow-item {
margin-left: -55px;
}
.pillar-flow-circle {
width: 50px;
height: 50px;
font-size: 1.3rem;
margin-right: 15px;
}
}
.dropmenu{
background-color: #222c38df;
width: 100%;
height: 100vh;
z-index: 1000;
position: fixed;
display: none;
transition: all 0.3s ease-in-out;
transform: translateY(-100%);
justify-content: center;
align-items: center;
}
.dropmenu.animate{
transform: translateY(0);
}
.dropmenu ul{
list-style: none;
display: flex;
flex-direction: column;
gap: 30px;
}
.dropmenu ul li{
color: var(--gold);
font-size: 30px;
transition: all 0.3s ease-in-out;
}
.dropmenu ul li:hover{
color: white;
letter-spacing: 1px;
}
.about-us{
display: flex;
flex-direction: column;
}
.about-highlight{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 40px 40px;
}
.devide-left{
width: 50%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.devide-right{
width: 50%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.devide-right h3{
font-size: 2.8rem;
text-align: center;
color: var(--ocean);
font-weight: 900;
}
.devide-right h3::after {
content: "";
display: block;
width: 60px;
height: 3px;
background: var(--gold);
margin: 10px auto 0;
}
.devide-right p{
font-size: 1.5rem;
text-align: right;
color: var(--ocean);
}
.about-highlight-pic{
width: 80%;
object-fit: cover;
border-radius: 20px;
transition: all 0.6 ease-in-out !important;
}

@media (max-width: 900px) {
.about-highlight{
flex-direction: column;
gap: 30px;
}
.devide-left, .devide-right{
width: 100%;
}
.devide-left{
order: 2;
}
.devide-right{
order: 1;
}
.devide-left img{
width: 100%;
}
}
.form-section{
display: flex;
overflow-x: hidden;
overflow-y: hidden;

}
.form-section h1{
margin-bottom: 10px
}
.imgsect{
width: 50%;
display: flex;
justify-content: center;
flex-direction: column;
text-align: right;
order: 2;
}

.imgsect h6{
font-size: 1.8rem;
color: var(--ocean);
}

.contact-disc{
    margin-top: 14px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--ocean);
}

.pointers{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    font-size: 1.1rem;

}

.pointers span{
    font-weight: 900;
    color: var(--ocean);
}

.contact-us-section{
    display: flex;
    flex-direction: column;
    padding: 10px 10%;
    margin-top: 40px;
}


.contact-heading{
font-size: 2.4rem;
color: var(--ocean);
font-weight: 800;
position: relative;
text-align: center;
}

.contact-heading::after {
content: "";
display: block;
width: 60px;
height: 3px;
background: var(--gold);
margin: 10px auto 0;
}


.contact-section {
max-width: 600px;
width: 50%;
padding: 20px;
box-sizing: border-box;
order: 1;
}
.contact-section h1{
color: var(--ocean)
}
.form-container {
scale: 0.9;
background-color: #fff;
border-radius: 25px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.268);
padding: 30px 40px;
}
.form-group {
margin-bottom: 14px;
}
label {
display: block;
font-size: 16px;
font-weight: 400;
margin-bottom: 8px;
}
.required {
color: #e34c4c;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
width: 100%;
padding: 15px 20px;
border: 1px solid #e0e0e0;
border-radius: 12px;
box-sizing: border-box;
font-size: 16px;
color: var(--general-text-color);
outline: none;
transition: border-color 0.3s;
}
::placeholder {
color: #a0a0a0;
opacity: 1;
}
input:focus,
textarea:focus {
border-color: var(--darkgold);
}
textarea {
resize: none;
height: 110px;
}
.send-button {
width: 100%;
padding: 18px;
background-color: var(--ocean);
color: var(--gold);
font-size: 18px;
font-weight: 700;
border: none;
border-radius: 12px;
cursor: pointer;
transition: background-color 0.3s;
box-shadow: 0 5px 15px rgba(27, 21, 1, 0.348);
}
.send-button:hover {
background-color: var(--gold);
color: var(--ocean);
}
@media (max-width: 768px) {
.form-section {
flex-direction: column;
}

.contact-us-section{
    padding: 20px 5%;
}
.contact-section {
width: 100%;
max-width: 100%;
padding: 0;
}
.form-container {
padding: 20px;
margin: 0 0 30px 0;
}
.imgsect {
display: none;
}
.form-section h1 {
font-size: 2rem;
text-align: center;
width: 100%;
}
}
.brands-section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
padding: 80px 40px;
background-color: #fff;
}
.brands-section h4, .contact-us-container {
font-size: 2.8rem;
color: var(--ocean);
margin-bottom: 50px;
font-weight: 800;
position: relative;
text-align: center;
}
.brands-section h4::after {
content: "";
display: block;
width: 60px;
height: 3px;
background: var(--gold);
margin: 10px auto 0;
}

.brands-grid {
display: flex;
gap: 25px;
justify-content: center;
align-items: center;
width: 100%;
}
.brandcard {
width: 30%;
height: 550px;
overflow: hidden;
transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
position: relative;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
background-color: var(--ocean);
}
.brandcard p{
color: white;
font-weight: 600;
font-size: 0.7rem;
text-align: center;
opacity: 1;
transition: opacity 5s ease-in-out;
}

@media (min-width: 1200px) {
    .brandcard p {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
.brandcard p {
font-size: 0.6rem;
}

}
.brand-bg {
width: 100%;
height: 100%;
transition: all 0.8s ease;
z-index: 0;
position: absolute;
top: 0;
left: 0;
object-fit: cover;
display: block;
opacity: 1;
animation: loopzoom 7s infinite ease-in-out;
}
@keyframes loopzoom {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
.brandcard:hover .brand-bg {
transform: scale(1.1);
filter: brightness(0.6);
}
.brandoverlay {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(to bottom,
rgba(34, 44, 56, 0.13) 0%,
rgba(16, 22, 28, 0.579) 50%,
rgba(15, 20, 26, 0.908) 100%);
transition: all 0.4s ease;
}
.brandcard:hover .brandoverlay {
background: linear-gradient(to bottom,
rgba(34, 44, 56, 0.1) 0%,
rgba(34, 44, 56, 0.5) 50%,
rgba(34, 44, 56, 0.95) 100%);
}
.brandidentity {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 0 20px;
z-index: 2;
transition: transform 0.4s ease;
}
.brandcard:hover .brandidentity {
transform: translateY(-25px);
}
.brandidentity img {
width: 110px;
filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
margin-bottom: 10px;
}
.brandidentity h6 {
font-size: 2.2rem;
color: white;
margin: 0;
text-align: center;
font-weight: 700;
text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.prm-btn {
font-family: "Changa", sans-serif !important;
background-color: var(--gold);
color: var(--ocean);
border: none;
padding: 12px 30px;
font-size: 15px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease-in-out;
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%) translateY(20px);
opacity: 0;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
border-radius: 5px;
white-space: nowrap;
z-index: 3;
}
.brandcard:hover .prm-btn {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
.prm-btn:hover {
background-color: #fff;
color: var(--ocean);
}
@media (max-width: 1200px) {
.brandcard { width: 45%; height: 450px; }
.brands-grid { flex-wrap: wrap; gap: 30px; }
}
@media (max-width: 900px) {
.brandcard { width: 100%; max-width: 400px; height: 410px; }
.brands-grid { flex-direction: column; }
.prm-btn {
opacity: 1;
transform: translateX(-50%) translateY(0);
bottom: 25px;
}
.brandcard .brandidentity { transform: translateY(-15px); }
}
footer {
background-color: var(--ocean);
color: var(--gold);
display: flex;
padding: 80px 40px;
flex-direction: row;
border-top: 1px solid rgba(191, 161, 99, 0.2);
}
.leftfooter, .midfooter, .rightfooter {
width: 33.33%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 25px;
}
.footer-card {
color: var(--ocean);
width: 85%;
min-height: 280px;
border-radius: 15px;
position: relative;
overflow: hidden;
background: linear-gradient(135deg,
#8a6e3d 0%,
#bfa163 25%,
#f5e9cf 50%,
#bfa163 75%,
#8a6e3d 100%
);
background-size: 200% 200%;
box-shadow:
0 15px 35px rgba(0, 0, 0, 0.4),
inset 0 0 15px rgba(255, 255, 255, 0.3);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
display: flex;
flex-direction: column;
padding: 35px;
align-items: center;
justify-content: center;
}
.footer-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
pointer-events: none;
transition: transform 0.6s ease;
}
.footer-card:hover {
transform: translateY(-10px);
background-position: right center;
box-shadow:
0 30px 60px rgba(0, 0, 0, 0.6),
inset 0 0 20px rgba(255, 255, 255, 0.4);
}
.footer-card:hover::before {
transform: translate(10%, 10%);
}
.rightfooter nav ul {
display: flex;
flex-direction: column;
font-size: 1.1rem;
color: var(--ocean);
list-style: none;
gap: 12px;
align-items: center;
justify-content: center;
font-weight: 700;
}
.rightfooter nav ul li a {
color: var(--ocean);
position: relative;
padding-bottom: 2px;
transition: all 0.3s ease;
}
.rightfooter nav ul li a::after {
content: '';
position: absolute;
width: 0;
height: 1.5px;
bottom: 0;
left: 0;
background-color: var(--ocean);
transition: width 0.3s ease;
}
.rightfooter nav ul li a:hover::after {
width: 100%;
}
.midfooter .contacts {
display: flex;
flex-direction: column;
gap: 15px;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 1rem;
color: var(--ocean);
text-align: center;
}
.midfooter .contacts a {
transition: transform 0.3s ease, color 0.3s ease;
display: flex;
align-items: center;
gap: 10px;
}
.midfooter .contacts a i {
font-size: 1.2rem;
opacity: 0.8;
}
.midfooter .contacts a:hover {
color: #000;
transform: scale(1.05);
}
.leftfooter img {
width: 120px;
margin-bottom: 10px;
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.leftfooter .company {
display: flex;
flex-direction: column;
gap: 2px;
align-items: center;
justify-content: center;
color: var(--ocean);
}
.leftfooter .company p {
font-size: 1.3rem;
line-height: 1.6rem;
font-weight: 800;
letter-spacing: 1px;
}
.copyright {
background-color: #1a232c;
color: var(--gold);
text-align: center;
width: 100%;
padding: 20px 0;
font-size: 0.9rem;
letter-spacing: 1px;
border-top: 1px solid rgba(191, 161, 99, 0.1);
}
@media (max-width: 900px) {
footer {
flex-direction: column;
gap: 40px;
padding: 60px 20px;
}
.leftfooter, .midfooter, .rightfooter {
width: 100%;
}
.footer-card {
width: 90%;
min-height: 220px;
padding: 25px;
}
.leftfooter .company p {
font-size: 1.1rem;
}
}
.location-section {
width: 100%;
background-color: var(--ocean);
display: flex;
flex-direction: column;
align-items: center;
padding: 80px 20px;
text-align: center;
}
.location-section h6 {
font-size: 2.2rem;
color: var(--gold);
font-weight: 800;
letter-spacing: 1px;
}
.location-section h6::after {
content: "";
display: block;
width: 60px;
height: 3px;
background: var(--gold);
margin: 10px auto 0;
}
.location-section p address {
color: #fff !important;
font-size: 1.1rem;
max-width: 600px;
line-height: 1.6;
margin-bottom: 40px;
opacity: 0.9;
font-weight: 300;
}
.mapcont {
width: 100%;
max-width: 1100px;
height: 400px;
border-radius: 20px;
overflow: hidden;
position: relative;
border: 2px solid rgba(191, 161, 99, 0.3);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
transition: transform 0.5s ease, border-color 0.5s ease;
margin-top: 20px;
}
.mapcont:hover {
border-color: var(--gold);
transform: translateY(-5px);
}
.mapcont iframe {
width: 100%;
height: 100%;
filter: grayscale(0.2) contrast(1.1);
}
@media (max-width: 900px) {
.location-section {
padding: 60px 15px;
}
.location-section h6 {
font-size: 1.8rem;
}
.mapcont {
height: 350px;
}
.location-section p {
font-size: 1rem;
}
}
.map-placeholder {
position: absolute;
inset: 0;
background: var(--ocean);
display: flex;
align-items: center;
justify-content: center;
color: var(--gold);
font-weight: 600;
z-index: 2;
transition: opacity 0.6s ease;
}
.mapcont.loaded .map-placeholder {
opacity: 0;
pointer-events: none;
}
.mapcont iframe {
opacity: 0;
transition: opacity 1s ease;
}
.mapcont.loaded iframe {
opacity: 1;
}
.stats-section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 20px;
}
.stats-section h1 {
font-size: 2.2rem;
color: var(--ocean);
font-weight: 800;
letter-spacing: 1px;
text-align: center;
}
.stats-section h1::after {
content: "";
display: block;
width: 60px;
height: 3px;
background: var(--gold);
margin: 10px auto 0;
}
.stats-container {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: center;
margin-top: 40px;
width: 100%;
max-width: 1200px;
}
.stat-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
flex: 1;
}
.stat-item img {
width: 50px;
height: 50px;
margin-bottom: 10px;
}
.stat {
font-size: 1.2rem;
color: var(--ocean);
font-weight: 800;
letter-spacing: 1px;
margin-top: 10px;
}
.statnum {
font-size: 3rem;
color: var(--gold);
font-weight: 800;
margin-top: -10px;
font-variant-numeric: tabular-nums;
display: flex;
justify-content: center;
align-items: center;
direction: ltr;
}
@media (max-width: 768px) {
.stats-section {
padding: 40px 20px;
}
.stats-container {
flex-direction: column;
margin-top: 30px;
justify-content: center;
align-items: center;
}
.stats-section h1 {
font-size: 1.8rem;
}
.statnum {
font-size: 2.5rem;
}
.stat {
font-size: 1.1rem;
}
}
.ghaiboba{
    filter: saturate(0%) invert(1) brightness(200%) !important;
    width: 150px !important ;
}

.typewriter-text {
    min-height: 1.2em;
    display: inline-block;
}

.typewriter-text::after {
    content: "|";
    margin-right: 2px;
    animation: blink 0.8s infinite;
    color: #daa52000;
    opacity: 0;
}

.typewriter-text.finished::after {
    display: none;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* 1. The width of the scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

/* 2. The Track (the background of the scrollbar) */
::-webkit-scrollbar-track {
    background: var(--ocean); 
}

/* 3. The Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 6px; /* Makes it look sleek and rounded */
    border: 3px solid var(--ocean); /* Creates a "padding" effect around the gold */
}

/* 4. Hover effect to make it interactive */
::-webkit-scrollbar-thumb:hover {
    background: #d4bc8a; /* A slightly lighter gold for feedback */
}

/* Firefox Support (Standard) */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--ocean);
}


html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}


.contact-form-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(0 0 0 / 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}
.contact-form-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(0 0 0 / 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}
.contact-form-pop-up {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
    height: auto;
    background: rgb(0 0 0 / 0.85);
    border-radius: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}
.contact-form-pop-up.active,
.contact-form-backdrop.active {
    opacity: 1;
    visibility: visible;
}
.pop-up-text {
    font-size: 1.1rem;
    line-height: 1.5;
    padding: 80px 10px;
    margin-top: 10px;
}
.pop-up-text.success {
    color: #4caf50;
}
.pop-up-text.error {
    color: #f44336;
}
.close-popup {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.2s ease;
}
.close-popup:hover {
    color: var(--color1);
}
@media (max-width: 520px) {
    .contact-form-pop-up {
        width: 90%;
        padding: 15px;
    }
    .close-popup {
        font-size: 1.2rem;
        top: 8px;
        right: 8px;
    }
    .pop-up-text {
        font-size: 1rem;
    }
}







.services{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
      overflow-x: hidden;
}


.services h6 {
font-size: 2.8rem;
color: var(--ocean);
margin-bottom: 50px;
font-weight: 800;
position: relative;
text-align: center;
}
.services h6::after {
content: "";
display: block;
width: 60px;
height: 3px;
background: var(--gold);
margin: 10px auto 0;
}


  .mySwiper {
      width: 100%;
      height: 100%;
      padding-bottom: 50px !important;
  }

    .mySwiper .swiper-slide {
      text-align: center;
      font-size: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
    }


    .servicesslides{
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .leftpart{
      width: 40%;
      padding-left: 50px;
      display: flex;
      flex-direction: row;
      gap: 30px;
      justify-content: center;
      align-items: center;

    }

    .leftpart img{
      width: 90%;
      aspect-ratio: 16/10;
      object-fit: cover;
      border-radius: 20px;
    }


    .rightpart{
      width: 40%;
      padding-right: 50px;
    }

    .service-title{
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .service-description{
        font-size: 1.2rem;
        margin-bottom: 20px;
    }


    @media (max-width: 800px) {
    .leftpart, .rightpart{
        width: 100%;
        padding: 0;
        padding-right: 0;
        padding-left: 0px;
    }

    .leftpart{
      position: absolute;
      z-index: -1;
    }

    .rightpart{
      padding: 0 8%;
      z-index: 1;
    }

    .leftpart img{
      width: 100%;
      border-radius: 0;
      object-fit: contain !important;
      filter: brightness(80%);
    }

        .service-title{
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: white;
    }

    .service-description{
        font-size: 0.6rem;
        margin-bottom: 20px;
        color: white;
        background-color: rgba(0, 0, 0, 0.57);
        padding: 5px 20px;
    }

    }




/* Swiper Custom Styles */
.topswiper .swiper-pagination {
  position: absolute;
  bottom: 1px !important; /* Adjusted slightly for better visibility */
  opacity: 1 !important; /* Better visibility for lines */
}

/* 1. Turn dots into lines */
.topswiper .swiper-pagination .swiper-pagination-bullet {
  width: 30px;          /* Width of the line */
  height: 7px;          /* Thickness of the line */
  border-radius: 2px;   /* Slight rounding for a pill shape, or 0 for sharp edges */
  background: rgb(108, 108, 108);  /* Color of inactive lines */
  opacity: 0.5;
  transition: all 0.3s ease; /* Smooth transition when active */
}

/* 2. Style the active line */
.topswiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 70px;          /* Make the active line longer (optional) */
  background-color: var(--ocean) !important;
  opacity: 1 !important;
}

.topswiper .swiper-button-next,
.topswiper .swiper-button-prev {
  color: white !important;
  background-color: #222c38db; /* Soft #111 circle */
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  transition: background 0.3s ease;
}

/* 1. Clear the default icon */
.topswiper .swiper-button-next:after,
.topswiper .swiper-button-prev:after {
  content: '' !important; /* This removes the default Swiper arrow */
}

/* 2. Create your new custom icon */
.topswiper .swiper-button-next::before,
.topswiper .swiper-button-prev::before {
  color: var(--gold);
  font-family: Arial, sans-serif; /* Standard font for clean look */
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3. Assign the specific arrows */
.topswiper .swiper-button-prev::before {
  content: '‹'; /* Single left-pointing angle quotation mark */
}

.topswiper .swiper-button-next::before {
  content: '›'; /* Single right-pointing angle quotation mark */
}

/* Hover effect for better UX */
.topswiper .swiper-button-next:hover,
.topswiper .swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.topswiper .swiper-button-next:hover::before,
.topswiper .swiper-button-prev:hover::before {
  color: #fff;
}

@media (max-width: 900px) {
  .topswiper .swiper-button-next,
 .topswiper .swiper-button-prev {
    width: 35px !important;  /* Shrunk from 50px */
    height: 35px !important; /* Shrunk from 50px */
  }

  .topswiper .swiper-button-next::before,
  .topswiper .swiper-button-prev::before {
    font-size: 18px; /* Shrunk from 24px to fit the smaller circle */
  }
}

.operating-hours{
  display: flex !important;
  flex-direction: column !important;
  color: white !important;
  margin-top: 30px !important;
  padding-bottom: 0 !important;
}

.working-hours{
  font-size: 1.3rem !important;
}

.operating-hours p span{
  color: var(--gold) !important; 
  font-size: 1.2rem !important;
}