  body{
font-family: "Changa", sans-serif;
font-optical-sizing: auto;
background-color: #f7f7f7;
overflow-x: hidden !important;
}

html {
scroll-behavior: smooth;
}

:root{
--ocean: #222c38;
--gold: #bfa163;
--dark: #111;
--accent:#6E6ECC;
}

*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--ocean: #222c38;
--gold: #bfa163;
}

a{
    text-decoration: none;
    color: inherit;
}

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;
}


/* 1. The width of the scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

/* 2. The Track (the background of the scrollbar) */
::-webkit-scrollbar-track {
    background: #111; 
}

/* 3. The Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 6px; /* Makes it look sleek and rounded */
    border: 3px solid #111; /* 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: white #111;
}
/* --- Base Preloader Container --- */
.preloader {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: #111;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

/* This is the key change: applying a combined slide and fade animation */
.preloader.loaded {
    animation: slideAndFadeOut 1s ease forwards 1s; /* 1s delay to let text/spinner finish */
    pointer-events: none; /* Prevents blocking clicks during the fade */
}

/* --- Logo & Text Group --- */
.logo-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease-out forwards;
}

.preloaderimg {
    width: 200px;
    transition: opacity 0.5s ease;
    margin-bottom: -40px !important;
}

.preloader.loaded .preloaderimg {
    opacity: 0;
}

/* --- Typewriter H1 --- */
.preloaderh1 {
    color: white;
    font-size: 3rem;
    opacity: 0.8;
    margin-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    width: 0; 
    animation: 
        typing 1.5s steps(20, end) forwards 0.5s,
        blink 0.75s step-end infinite;
}

.preloader.loaded .preloaderh1 {
    animation: untyping 0.6s steps(20, end) forwards;
}

/* --- Spinner --- */
.loader {
    position: absolute;
    left: 50%;
    bottom: -15%; 
    transform: translateX(-100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    scale: 0.5;
    opacity: 0.6;
    animation: slideUp 0.8s ease-out forwards 0.1s;
}

.preloader.loaded .loader {
    animation: slideDown 0.5s ease-in forwards;
}

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    animation: pulsOut 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.75));
}

.loader:before {
    width: 100%;
    padding-bottom: 100%;
    box-shadow: inset 0 0 0 1rem #fff;
    animation-name: pulsIn;
}

.loader:after {
    width: calc(100% - 2rem);
    padding-bottom: calc(100% - 2rem);
    box-shadow: 0 0 0 0 #fff;
}

/* --- Keyframes --- */

/* THE EXIT: Slide down and Fade out at the same time */
@keyframes slideAndFadeOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes untyping {
    from { width: 100%; }
    to { width: 0; }
}

@keyframes slideUp {
    from { bottom: -15%; }
    to { bottom: 8%; }
}

@keyframes slideDown {
    from { bottom: 8%; opacity: 0.6; }
    to { bottom: -15%; opacity: 0; }
}

@keyframes pulsIn {
    0% { box-shadow: inset 0 0 0 1rem #fff; opacity: 1; }
    50%, 100% { box-shadow: inset 0 0 0 0 #fff; opacity: 0; }
}

@keyframes pulsOut {
    0%, 50% { box-shadow: 0 0 0 0 #fff; opacity: 0; }
    100% { box-shadow: 0 0 0 1rem #fff; opacity: 1; }
}




.topcontainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.top-bg{
    width: 100%;
    height: 100vh;
    z-index: 100;
    pointer-events: none;
}


.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: 1170px) {
.nav-icon2 { display: block !important;  }
.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: white;
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;
}
}

@media (max-width: 768px) {
    .topcontainer{
        height: 700px;
    }
}

.topswiper {
    width: 100%;
height: 100vh;
    position: relative;
  }


  
.topswiper .swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;

  }


  .topswiper .swiper-slide .myswiperimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the overlay */
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 4600; /* Ensure it appears above the image */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.367);
  }



/* Swiper Custom Styles */
.topswiper .swiper-pagination {
  position: absolute;
  bottom: 30px !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: #ffffff;  /* 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: white !important;
  opacity: 1 !important;
}

.topswiper .swiper-button-next,
.topswiper .swiper-button-prev {
  color: white !important;
  background-color: rgba(255, 255, 255, 0.625); /* 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: rgb(0, 0, 0);
  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 */
  }
}

.o-logo-co {
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));
}

.o-logo-co img {
width: 200px;
margin-bottom: 10px;
animation: luxuryPulse 5s infinite ease-in-out;
}
.o-logo-co 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;
}
.o-logo-co h2 {
font-size: 2.4rem;
font-weight: 300;
color: var(--gold);
opacity: 0.9;
margin-bottom: -12px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 500;
    border-bottom: 2px rgba(154, 154, 154, 0.189) solid;
    
    background-color: transparent;
    
    /* ADDED: transform to the transition list and a smoother timing function */
    transform: translateY(0);
    transition: 
        background-color 0.4s ease, 
        border-color 0.4s ease, 
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background-color: #111;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

header.hidden {
    /* Slides the header up by its own height */
    transform: translateY(-100%);
}

@media (max-width: 1170px) {
   .rightheader , .leftheader{
    display: none !important;
   }
   .midheader{
    width: 100% !important;
    justify-content: center !important;
   }
   .headerlogo{
    width: 100px !important;
   }

}

.leftheader, .midheader, .rightheader{
    width: 33.3%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.midheader a{
display: flex;
justify-content: center;
align-items: center;
}
.headerlogo {
    width: 75px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.193)) brightness(120%);
    
    /* Initial State */
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animation State */
.headerlogo.show-logo {
    opacity: 1;
    transform: translateY(0);
}




.rightheader nav .mainlist{
display: flex;
list-style: none;
gap: 25px;
color: white;
transform: translateX(30px) ;
}

.rightheader nav .mainlist li{
cursor: pointer;
transition: all 0.3s ease-in-out;
font-size: 1.15rem !important;
font-weight: 500;
letter-spacing: 0.5px;
}

.rightheader nav .mainlist li::after{
content: "";
display: block;
width: 0;
height: 2px;
background-color: white;
transition: width 0.3s ease-in-out;
margin-top: 3px;
}
.rightheader nav .mainlist li:hover{
color: #fff;
}
.rightheader nav .mainlist li:hover::after{
width: 100%;
}



.top-overlay{
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.logo-cont img{
    filter: invert(1);
    width: 200px;
}

.logo-cont h1{
    font-size: 4rem;
    color: var(--dark);
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}




.brand{
    color: white;
    width:60%;
    background-color: rgba(0, 0, 0, 0.652);
    padding: 20px 20px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.brand img{
    width: 200px;
}
.primary-btn{
    font-family: "Changa", sans-serif !important;
    background-color: white;
    color: var(--dark);
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    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:20px
}

.primary-btn:hover {
    /* Reverse the colors */
    background-color: var(--dark);
    color: white !important;
    border: #f7f7f7 1px solid;
    
    /* Optional: Slightly adjust the shadow so it feels more grounded when dark */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    
    /* Optional: Slight lift for interactivity */
    transform: translateY(-2px);
}

.primary-btn:active {
    transform: translateY(0);
}






@media (max-width: 900px) {
    .brand{
        width: 80%;
    }

    .brand img{
        width: 120px;
    }

    .brand p{
        font-size: 0.8rem;
    }

    }







/* 1. Initial State: Hidden and slightly moved up */
.rightheader nav .mainlist li {
    opacity: 0;
    transform: translateY(-20px); 
    transition: opacity 0.5s ease, transform 0.5s ease;
    
    /* Keep your existing styles here too */
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
}

/* 2. Active State: Triggered by JS */
.rightheader nav .mainlist li.drop-in {
    opacity: 1;
    transform: translateY(0);
}

.dropmenu{
background-color: #000000df;
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: white;
font-size: 30px;
transition: all 0.3s ease-in-out;
}
.dropmenu ul li:hover{
color: var(--accent);
letter-spacing: 1px;
}

.dropdownmenu{
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    list-style: none;
    flex-direction: column;
    gap: 20px;
    text-wrap: none;
    flex-wrap: none;
    background-color: rgba(255, 255, 255, 0.896);
    color: #111;
    width: 240px;
    padding: 10px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.dropmenu-parent:hover .dropdownmenu{
    visibility: visible;
    opacity: 1;
    top: 120%;
}

.dropdownmenu li{
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid rgba(105, 103, 103, 0.3);
}
.dropdownmenu li:hover{
    color: #111 !important;
}

.dropdownmenu li:hover li::after{
    color: #111 !important;
}



.dropdownmenu li::after{
content: "";
display: block;
width: 0;
height: 2px;
background-color: var(--accent) !important;
transition: width 0.3s ease-in-out;
margin-top: 3px;
}


@media (max-width: 900px) {
    .dropdownmenu{
        display: none !important;
    }
}


footer{
    display: flex;
    align-items: center;
    background-color: #111;
    color: white;
    padding: 50px 0px;
    border-top: 1px solid rgba(191, 161, 99, 0.2);
    overflow: hidden !important;
}



.leftfooter, .midfooter, .rightfooter{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.3%
}


.rightfooter img {
width: 120px;
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.contacts, .company {
display: flex;
flex-direction: column;
gap: 2px;
align-items: center;
justify-content: center;
color: white;
}
.rightfooter .company p {
font-size: 1.3rem;
line-height: 1.6rem;
font-weight: 800;
letter-spacing: 1px;
}



.leftfooter nav ul {
display: flex;
flex-direction: column;
font-size: 1.1rem;
color: white;
list-style: none;
gap: 12px;
align-items: center;
justify-content: center;
font-weight: 700;
}
.leftfooter nav ul li a {
color: white;
position: relative;
padding-bottom: 2px;
transition: all 0.3s ease;
}
.leftfooter nav ul li a::after {
content: '';
position: absolute;
width: 0;
height: 1.5px;
bottom: 0;
left: 0;
background-color: var(--accent);
transition: width 0.3s ease;
}
.leftfooter nav ul li a:hover::after {
width: 100%;
}


.rightfooter{
 border-left: 1px solid rgba(254, 254, 254, 0.485);
}

.leftfooter{
    border-right: 1px solid rgba(254, 254, 254, 0.485);
}

@media (max-width: 900px) {
    .leftfooter, .midfooter, .rightfooter{
        width: 100%;
        
    }

    footer{
        flex-direction: column;
        gap: 40px;
    }

    .leftfooter{
        border-right: none !important;
    }

    .rightfooter{
        border-left: none !important;
    }
}


.copyright {
background-color: #111;
color: white;
text-align: center;
width: 100%;
padding: 8px 0;
font-size: 0.9rem;
letter-spacing: 1px;
border-top: 1px solid rgba(254, 254, 254, 0.485);
}

.about-section{
    display:flex;
    padding: 100px 50px;
    margin-top: 30px;
    overflow-x: hidden !important;
}



.text-section, .img-section{
    width: 50%;
    display: flex;
}

.text-section{
    flex-direction: column;
    gap: 20px;
      align-items: center;
    justify-content: center;

}

.img-section{
        display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
}

.img-section img{
    width: 80%;
    border-radius: 20px;
}

.text-section h3{
    font-size: 2.5rem;
    text-align: right !important;
    align-self: flex-start !important;
}

.text-section h3::after{
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark);
    margin-top: 1px;
}

.text-section p{
    font-size: 1.5rem;
    text-align: right !important;
    align-self: flex-start !important;
}




@media (max-width: 1000px) {
    .about-section{
        flex-direction: column;
        gap: 40px;
        padding: 80px 40px;
        margin-top: 30px;
    }
    .text-section, .img-section{
        width: 100%;
    }

    .text-section p{
        font-size: 1.2rem;
    }
}





.contact-us-section{
    display: flex;
    flex-direction: column;
    padding: 10px 10%;
    margin-top: 40px;
}


.contact-heading{
font-size: 2.4rem;
color: var(--dark);
font-weight: 800;
position: relative;
text-align: center;
}

.contact-heading::after {
content: "";
display: block;
width: 200px;
height: 2px;
background: var(--dark);
margin: 1px auto 0;
}


.contact-section {
max-width: 600px;
width: 50%;
padding: 20px;
box-sizing: border-box;
order: 1;
}
.contact-section h1{
color: var(--dark)
}
.form-container {
scale: 0.9;
background-color: #fff;
border-top-left-radius: 40px;
border-bottom-right-radius: 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.193);
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(--dark);
color: white;
font-size: 18px;
font-weight: 700;
border: none;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s;
box-shadow: 0 5px 15px rgba(27, 21, 1, 0.348);
}
.send-button:hover {
background-color: var(--accent);
transform: translateY(-3px);
}

.send-button:active {
background-color: #353563;
transform: translateY(0);
}



.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.9rem;
color: var(--dark);
}

.contact-disc{
    margin-top: 14px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--ocean);
}


@media (max-width: 1000px) {
.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%;
}
}

.pointers{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    font-size: 1.1rem;

}

.pointers span{
    font-weight: 900;
    color: var(--ocean);
}












.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;
    }
}