/* ------------------ HELVETICA BASIC ------------------ */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

/* Helvetica Roman */
@font-face {
    font-family: 'HelveticaRoman';
    src: url('../fonts/helvetica-roman.woff2') format('woff2'),
         url('../fonts/helvetica-roman.woff') format('woff'),
         url('../fonts/helvetica-roman.ttf') format('truetype');
    /* font-weight: 400; */
    font-style: normal;
}

/* Helvetica Bold */
@font-face {
    font-family: 'HelveticaBold';
    src: url('../fonts/helvetica-bold.woff2') format('woff2'),
         url('../fonts/helvetica-bold.woff') format('woff'),
         url('../fonts/helvetica-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Helvetica Light */
/* @font-face {
    font-family: 'HelveticaLight';
    src: url('../fonts/helvetica-light.woff2') format('woff2'),
         url('../fonts/helvetica-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
*/

/* ------------------ HELVETICA STD ------------------ */

/* Std Roman */
@font-face {
    font-family: 'HelveticaStdRoman';
    src: url('../fonts/HelveticaLTStd-Roman.woff2') format('woff2'),
         url('../fonts/HelveticaLTStd-Roman.woff') format('woff'),
         url('../fonts/HelveticaLTStd-Roman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Std Bold */
@font-face {
    font-family: 'HelveticaStdBold';
    src: url('../fonts/HelveticaLTStd-Bold.woff2') format('woff2'),
         url('../fonts/HelveticaLTStd-Bold.woff') format('woff'),
         url('../fonts/HelveticaLTStd-Bd.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Std Light */
@font-face {
    font-family: 'HelveticaStdLight';
    src: url('../fonts/HelveticaLTStd-Light.woff2') format('woff2'),
         url('../fonts/HelveticaLTStd-Light.woff') format('woff'),
         url('../fonts/HelveticaLTStd-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}


/* ------------------ HELVETICA NEUE ------------------ */

/* Neue Roman */
@font-face {
    font-family: 'HelveticaNeueRoman';
    src: url('../fonts/HelveticaNeueRoman.woff2') format('woff2'),
         url('../fonts/HelveticaNeueRoman.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* Neue Bold */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeueBold.woff2') format('woff2'),
         url('../fonts/HelveticaNeueBold.woff') format('woff');
		 font-weight: 700
    font-style: normal;
}

/* Neue Medium */
@font-face {
    font-family: 'HelveticaNeueMedium';
    src: url('../fonts/HelveticaNeueMedium.woff2') format('woff2'),
         url('../fonts/HelveticaNeueMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

/* Neue Light */
@font-face {
    font-family: 'HelveticaNeueLight';
    src: url('../fonts/HelveticaNeueLight.woff2') format('woff2'),
         url('../fonts/HelveticaNeueLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}


/* ------------------ HELVETICA LT EXTRA ------------------ */

/* Roman LT */
@font-face {
    font-family: 'HelveticaRomanLT';
    src: url('../fonts/helvetica-roman-LT.woff2') format('woff2'),
         url('../fonts/helvetica-roman-LT.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* Bold LT */
@font-face {
    font-family: 'HelveticaBoldLT';
    src: url('../fonts/helvetica-bold-LT.woff2') format('woff2'),
         url('../fonts/helvetica-bold-LT.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Helvetica Roman Arabic */
@font-face {
    font-family: 'Helvetica-Arabic';
    src: url('../fonts/helvetica-roman.woff2') format('woff2'),
         url('../fonts/helvetica-roman.woff') format('woff'),
         url('../fonts/helvetica-roman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


/* ------------------ DEFAULTS ------------------ */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'HelveticaRoman', sans-serif; */
}

body {
    overflow-x: hidden;
    font-family: 'HelveticaRoman', sans-serif;
}


/* ---------------- HERO SECTION ---------------- */

.hero-slide {
    height: 90vh;
    min-height: 620px;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    display: flex;
    align-items: center;
}

/* Dark overlay */
.hero-slide::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.44);
}

/* Text Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding-left: 80px;
    /* padding-left: 70px; */
    max-width: 850px;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 700;
	font-family: 'HelveticaRoman';
	letter-spacing: 4px;
}
.hero-content h2 {
    font-size: 40px;
    font-weight: 500;
    margin-top: 10px;
	font-family: 'HelveticaRoman';
	letter-spacing: 3px;
}
.hero-content p {
    font-size: 25px !important;
    margin-top: 12px;
	font-family: 'HelveticaRoman';
	font-weight: 400;
	letter-spacing: 2px;
}

/* CTA Button */
.hero-btn {
    background: #d38d5f;
    color: white;
    padding: 12px 30px;
    border: none;
    margin-top: 25px;
    font-size: 16px;
}
.hero-content a.hero-btn {
    text-decoration: none;
    display: inline-block;
}
.hero-content a.hero-btn:hover {
    background: #f5caad;
    color: black;
}


/* Bottom scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}
.scroll-indicator div {
    width: 23px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 45%;
}

.scroll-dot {
    font-size: 30px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    animation: bounce 1.5s infinite ease-in-out; /* Bouncing animation */
    /* transition: all 0.3s ease; */
}
.scroll-dot span {
    display: block;
    margin-bottom: 100%;
}
/* Bouncing animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Adjust this value to change how high the dot bounces */
    }
}

/* Hover effect to change color */
.scroll-dot:hover {
    background-color: #fff;
    border-color: #d38d5f; /* Change the color when hovered */
}
/* Swiper nav arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Position the 'next' button to the right */
.swiper-button-next {
    right: -51px;  /* Next button on the right */
}

/* Position the 'prev' button to the left */
.swiper-button-prev {
    left: -51px;   /* Prev button on the left */
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

/* Bottom-right controls */
.swiper-controls {
    position: absolute;
    right: 137px;
    bottom: 40px;
    z-index: 15;
    display: flex;
    gap: 15px;
}


/* ---------------- RESPONSIVE FIXES ---------------- */

/* Tablets ( < 992px ) */
@media (max-width: 991px) {

    .hero-content {
        padding-left: 40px;
        max-width: 500px;
    }

    .hero-content h1 { font-size: 38px; }
    .hero-content h2 { font-size: 30px; }
    .hero-content p { font-size: 16px; }

    .swiper-controls {
       /* right: 50px; */
        bottom: 30px;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 34px;
        height: 34px;
    }
}

/* Mobile Large ( < 768px ) */
@media (max-width: 767px) {

    .hero-slide {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        padding-left: 0px;
        padding-right: 0px;
    }

    .hero-content h1 { font-size: 32px; }
    .hero-content h2 { font-size: 24px; }
    .hero-content p { font-size: 15px; }

    .hero-btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    .swiper-controls {
        right: 20px;
        bottom: 20px;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .scroll-indicator div {
        width: 22px;
        height: 22px;
    }
}

/* Mobile Small ( < 480px ) */
@media (max-width: 479px) {

    .hero-content h1 { font-size: 26px; }
    .hero-content h2 { font-size: 20px; }
    .hero-content p { font-size: 14px; }

    /* .swiper-controls {
        right: 15px;
        bottom: 15px;
    } */
     .swiper-controls {
    right: 50%;
    bottom: 20%;
    /* transform: translate(50%, -50%); */
}

    .swiper-button-next, .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .hero-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .scroll-indicator div {
        width: 18px;
        height: 18px;
    }
}


/* ---------------- ABOUT SECTION ---------------- */

.about-section {
    background: #ffffff;
    text-align: center;
    padding: 70px 170px;
    /* padding: 70px 180px; */
   
}

.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1c2a44;
    margin-bottom: 25px;
	font-family: 'HelveticaBold';
}

.about-section p {
    font-size: 18px !important;
    color: #202944 !important;
    line-height: 1.8;
	font-family: 'HelveticaRoman';
}

/* Responsive */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 80px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 50px 40px;
    }

    .about-section h2 {
        font-size: 26px;
    }

    .about-section p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-section {
        /* padding: 40px 25px; */
        padding: 40px 30px;
    }

    .about-section h2 {
        font-size: 22px;
    }

    .about-section p {
        font-size: 14px;
        line-height: 1.7;
        text-align: justify;
    }
}

/* ---------------- KEY HIGHLIGHTS SWIPER ---------------- */

.highlights-section {
    background: #EDD2BE;
    padding: 60px 71px;
    /* padding: 60px 60px; */
}

.highlights-title {
    font-size: 28px;
    font-weight: 700;
    color: #1c2a44;
    margin-bottom: 50px;
	font-family: 'HelveticaBold';
}

/* Swiper container size */
.highlights-swiper {
    width: 100%;
    /* padding-bottom: 40px; */
    padding-bottom: 90px;
    /* overflow: hidden; */
}
.swiper-wrapper{
    display: flex;
    justify-content: space-evenly;
}
/* Highlight card */
.highlight-card {
    position: relative;
    overflow: hidden;
    background: #000;
    /* height: 450px; */
    display: flex;
    flex-direction: column;
	margin-bottom: 10px;
}

/* .highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
    color: white;
    text-align: center;
}

/* Heading text */
.highlight-overlay h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 6px;
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
	font-family: 'HelveticaStdLight';
}
/* CENTERED UNDERLINE */
.highlight-overlay h3::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
    width: 40%;  /* initial line length */
    height: 2px;
    background: #d7a577;
    transition: width 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.15s;
    /* slow + delay */
}

/* Hover animation → expand from center */
.highlight-card:hover h3::after {
    width: 90%;  /* line length */
}

/* subtle heading animation */
.highlight-card:hover h3 {
    letter-spacing: 0.7px;
    transition: 0.4s ease;
}

.highlight-overlay p {
    font-size: 18px !important;
    opacity: 0.9;
    text-align: center;
	font-family: 'HelveticaStdLight';
}

/* Arrows */
.highlight-prev,
.highlight-next {
    width: 38px;
    height: 38px;
    border: 2px solid #d7a577;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    bottom: 0;
    cursor: pointer;
    z-index: 20;
    border-radius: 0%;
    background-color: #C98C5A;
}

.highlight-prev { top:92%; left: 0; }
.highlight-next { top:92%; right: 0; }

/* Arrow icons */
.highlight-prev::after,
.highlight-next::after {
    font-size: 15px;
    font-weight: bold;
    line-height: 2.3;
    margin-left: 38%;
}

/* Responsive */
@media(max-width: 768px){
    .highlight-card img {
        height: 350px;
    }
    .highlights-section {
    background: #e7d1c1;
    padding: 60px 50px;
}
}
@media(max-width: 480px){
.highlights-section {
    background: #e7d1c1;
    padding: 60px 30px;
    /* padding: 60px 40px; */
}
 .highlight-card {
       height: 270px;
}
.highlight-card img {
    height: 270PX;
}
}

/* ---------------- MERGED SECTION  FUTURE VISION + BENEFITS (MERGED SECTION)---------------- */

/* .vision-benefits-section {
    padding: 70px 60px;
    background: #ffffff;
} */
.vision-benefits-section {
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 71px;
    padding-right: 40px;
}
.vb-table .image-left{
	padding-left: 8.5%;
    padding-top: 2%;
	padding-right: 0%;
}

/* Headings + Text */
.vb-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1c2a44;
    margin-bottom: 20px;
	font-family: 'HelveticaRoman';
}

.vb-content p {
    font-size: 22px !important;
    color: #445981 !important;
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: justify;
	font-family: 'HelveticaStdRoman';
}

/* Shared Image Style */
.vb-image img {
    width: 100%;
    /* width: 90%; */
    /* height: 520px; */
    /* border-radius: 6px; */
}

/* Pillars & Benefits Titles */
.vb-content-pillar h3,
.vb-benefits-text h3 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1c2a44;
}

/* Remove default bullets */
.vb-list {
    list-style: none;
   /* padding-left: 22px; */
}

.vb-list li {
    position: relative;
    margin-bottom: 10px;
}

/* ORANGE bullets (first list inside vb-content-pillar) */
/*.vb-content-pillar .vb-list li::before {
    content: "•";
    position: absolute;
    left: -15px;
    top: 0;
    color: #d38d5f; 
    font-size: 22px;
}
*/

/* BLACK bullets (second list inside vb-benefits-text) */
/*.vb-benefits-text .vb-list li::before {
    content: "•";
    position: absolute;
    left: -15px;
    top: 0;
    color: #000;     
    font-size: 22px;
}
*/

/* Shared List */
.vb-list li {
    font-size: 20px;
    margin-bottom: 10px;
    color: #445981;
}

/* Vertical Center (Bootstrap 3 Compatible) */
.vb-table {
    display: table;
    width: 100%;
}

.vb-cell {
    display: table-cell;
    vertical-align: middle;
    float: none !important;
}

.vb-inner {
    /* padding-left: 12%; */
    padding-left: 6%;
}

/* Space Between Two Blocks */
.vb-space-60 {
    height: 60px;
}
 .vb-cell .vb-inner h3 {
    font-size: 35px;
    font-family: 'HelveticaStdRoman';
    font-weight: 500;
    color: #445981;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
	.vb-image img {
    width: 100%;
    /* height: 400px; */
   margin-bottom: 20px;
}
}

@media (max-width: 991px) {
   /* .vb-cell { display: block; } */

    .vb-content h2 { font-size: 28px; }
    .vb-inner {
        padding-left: 0;
        margin-top: 25px;
    }

    .vb-content-pillar h3,
    .vb-benefits-text h3 {
        text-align: center;
    }

    /*.vb-list { text-align: center; } */
	.vb-cell .vb-inner h3 {
    font-size: 26px;
 }
 .vb-image img {
    width: 100%;
    /* height: 400px; */
    }
}

@media (max-width: 767px) {
    .vision-benefits-section { padding: 60px 30px; }

    .vb-content h2 { font-size: 26px; }
    .vb-list li { font-size: 14px; }
    .vb-image img {
    width: 100%;
    height: 100%;
    /* border-radius: 6px; */
}
.vb-cell {
        float: left !important;
}
 .vb-cell .vb-inner h3 {
    font-size: 25px;
 }
}

@media (max-width: 480px) {
    .vb-content h2 { font-size: 22px; }
    .vb-benefits-text h3,
    .vb-content-pillar h3 { font-size: 22px; }
    .vb-image img {
    width: 100%;
    height: 100%;
    /* border-radius: 6px; */
}
.vb-list { text-align: left; padding: 0; }
}

/* ---------------- PROJECT UPDATES SECTION ---------------- */

/* .project-updates-section {
    background: #EDD2BE;
    padding: 70px 50px;
} */
.project-updates-section {
    background: #EDD2BE;
    padding: 70px 84px;
    /* padding: 70px 68px; */
}

/* Headings */
.pu-title {
    /* font-size: 28px; */
    font-size: 32px;
    font-weight: 700;
    color: #1c2a44;
    margin-bottom: 30px;
	font-family: 'HelveticaStdBold';
}

.project-Update .pu-subtitle {
    font-size: 22px !important;
    color: #1c2a44;
    margin-bottom: 35px;
	font-family: 'HelveticaStdRoman';
}

.project-Update .pu-latest-title {
    /* font-size: 20px; */
    font-size: 25px;
    font-weight: 700;
    color: #1c2a44;
    margin-bottom: 50px;
	font-family: 'HelveticaStdBold';
}

/* Each Item */
.project-Update .pu-item {
    text-align: center;
    margin-bottom: 40px;
	font-size: 20px;
	font-family: 'HelveticaStdRoman';
}
/*
.project-Update .pu-item p {
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
} */
.project-Update .pu-item p {
    min-height: 140px;
}

/* Round Icon */
.pu-icon img {
    /* width: 160px;
    height: 160px;
    border-radius: 50%; */
    margin: 0 auto 20px;
    width: unset;
}

/* SVG circle background */
.pu-svg-wrap {
    width: 220px;
    height: 220px;
    background: #C98C5A;      /* Orange background */
    border-radius: 50%;        /* Round shape */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

/* .pu-svg-wrap svg {
    width: 60px;
    height: 60px;
} */

/* Title under icon */
.pu-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #1c2a44;
    margin-bottom: 12px;
	font-family: 'HelveticaStdBold';
}

/* Paragraph */
.pu-item-text {
    font-size: 15px;
    line-height: 1.6;
    color: #1c2a44;
    /* max-width: 260px; */
    margin: 0 auto;
	font-family: 'HelveticaStdRoman';
}

/* ---------------- RESPONSIVE ---------------- */

/* @media (max-width: 991px) {
    .pu-icon img {
        width: 140px;
        height: 140px;
    }
} */
@media (max-width: 1024px) {
.project-Update .pu-item p {
    min-height: 305px;
}
html[dir="rtl"] .project-Update .pu-item p {
    min-height: 305px;
}
}
@media (max-width: 992px) {
	.project-Update .pu-item p {
        min-height: 465px;
 }
 html[dir="rtl"] .project-Update .pu-item p {
        min-height: 365px;
 }
	
}
@media (max-width: 767px) {
    .pu-title {
        font-size: 24px;
    }
    .pu-item-title {
        font-size: 18px;
    }
    .pu-item-text {
        font-size: 14px;
    }
}
@media (max-width: 540px) {
		.project-Update .pu-item p {
        min-height: 0px;
 }
 html[dir="rtl"] .project-Update .pu-item p {
        min-height: 0px;
 }
}
@media (max-width: 480px) {
        .pu-item {
    text-align: center;
    margin-bottom: 50px;
}
.pu-icon img {
    margin: 0 auto 20px;
    width: 70%;
}
.pu-svg-wrap {
    width: 195px;
    height: 195px;
}
	.project-Update .pu-item p {
        min-height: 0px;
 }
 html[dir="rtl"] .project-Update .pu-item p {
        min-height: 0px;
 }
}

/* ---------------- FAQ SECTION ---------------- */
.faq-question.active + .faq-answer {
    max-height: 500px; /* adjust as needed */
    /* margin-top: 10px; */
}


/* FAQ Section */
/* .faq-section {
    background: #ffffff;
    padding: 70px 60px;
} */
.faq-section {
    background: #ffffff;
    padding: 70px 84px;
    /* padding: 70px 68px; */
}
.faq-title {
    font-size: 30px;
    font-weight: 400;
    color: #486284;
    margin-bottom: 20px;
	font-family: 'HelveticaStdRoman';
	font-style: normal;
}

/* .faq-item {
    border-bottom: 1px solid #d0d7e1;
    padding: 12px 0;
} */
 .faq-item {
    border-bottom: 1px solid #c3d1e3; /* Default light */
    padding: 12px 0;
    transition: border-color 0.35s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
	font-weight: 400;
    color: #486284;
    text-align: left;
    padding: 12px 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-family: 'HelveticaRoman';
}

.faq-question:hover,
.faq-question.active {
    color: #2a4270; /* Darker blue on hover and active */
}

.arrow-icon {
    /* transition: transform 0.35s ease; */
    transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform: rotate(0deg); /* Default → down */
}

/* When open → arrow rotates up */
.faq-question.active .arrow-icon {
    transform: rotate(180deg);
}

/* --- Bounce Keyframe Animation --- */
@keyframes faqBounce {
     0%   { transform: translateY(35px); opacity: 0; }
    60%  { transform: translateY(-8px); opacity: 1; }
    80%  { transform: translateY(3px); }
    100% { transform: translateY(0); opacity: 1; }
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    /* transition: max-height 0.35s ease; */
    transition: max-height 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
    padding-right: 25px;
    text-align: justify;
}
/* When opened → apply bounce animation */
.faq-answer.open {
    /* animation: faqBounce 0.45s ease; */
    animation: faqBounce 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 1;
}

.faq-answer p {
    font-size: 18px;
    color: #486284;
    margin-top: 10px;
    line-height: 1.6;
	font-family: 'HelveticaRoman';
}

/* ---------------- CONTACT SECTION ---------------- */
/* CONTACT SECTION */
.contact-section {
    background: #BDD2D5;
    padding: 70px 20px;
    text-align: center;
}

.contact-title {
    font-size: 30px;
    font-weight: 500;
    color: #202944;
    margin-bottom: 10px;
	font-family: 'HelveticaRoman';
	margin-bottom: 50px;
}

.contact-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1c2a44;
    margin-bottom: 5px;
	font-family: 'HelveticaBold';

}

.contact-section .contact-tags {
     font-size: 22px !important;
    color: #1c2a44 !important;
	font-weight: 400;
	font-family: 'HelveticaRoman'; 
    margin-bottom: 40px;
    margin-top: 16px;
}

.contact-container{
    max-width: 800px;
    text-align: left;
    margin: 0 auto;
}

.contact-container #musaffahContactUsForm label {
    text-align: left;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #515B7B;
	font-family: "HelveticaNeue", sans-serif;
	font-weight: 300;
    margin-top: 10px;
}

.contact-container .form-control {
    height: 42px;
    border-radius: 4px;
    border: 1px solid #9fb0c2;
    box-shadow: none;
    background: transparent;
}

.contact-container .Fields {
    display: block;
    width: 100%;
    height: 42px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: transparent;
    background-image: none;
    border: 1px solid #9fb0c2;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
}
/* Add focus styles */
.contact-container .Fields:focus {
    border: 1px solid #9fb0c2; /* Same border color as default */
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); /* Keep same shadow */
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075); /* Keep same shadow */
    outline: none; /* Remove default outline on focus */
}
#musaffahContactUsForm input, select {
    max-width: 350px !important; /* Set max-width to 350px */
    width: 100%; /* Ensure the input takes up the full width available but doesn't exceed 350px */
}
#musaffahContactUsForm textarea {
    max-width: 750px !important; /* Set max-width to 350px */
    width: 100%; /* Ensure the input takes up the full width available but doesn't exceed 350px */
}


.contact-container .Fieldstextarea {
    display: block;
    width: 100%;
    height: 140px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: transparent;
    background-image: none;
    border: 1px solid #9fb0c2;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
}
/* Add focus styles */
.contact-container .Fieldstextarea:focus {
    border: 1px solid #9fb0c2; /* Same border color as default */
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); /* Keep same shadow */
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075); /* Keep same shadow */
    outline: none; /* Remove default outline on focus */
}
.contact-container textarea.form-control {
    height: auto;
}
.contact-btn-wrap .contact-btn {
    background: #d38d5f;
    color: white;
    padding: 12px 40px;
    border: none;
    margin-top: 30px;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.45s ease, color 0.45s ease; /* Smooth transition */
     display: inline-block;
    text-decoration: none;
}
.contact-btn-wrap .contact-btn:hover {
    background: #f5caad;
    color: black;
}

/* Fixed Vertical Slider */
.v-slider {
    /* position: fixed;
    bottom: 0;
    left: 0; */
    width: 100%;
    height: 140px;                /* Slider Height */
    background: #8eb5be;         /* Your dark background */
    display: flex;
    align-items: center;
    z-index: 999999;             /* Always on top */
}

.verticalSwiper {
    width: 100%;
    height: 100%;
}

.verticalSwiper .swiper-slide {
    color: #202944;
    font-size: 30px;
    font-weight: 700;
	font-family: 'HelveticaBold';
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
   .verticalSwiper .swiper-slide {
    font-size: 22px;
}
}

@media (max-width: 480px) {
    .verticalSwiper .swiper-slide {
    font-size: 20px;
}
}

.blur {
        filter: blur(3px);
        pointer-events: none;
        opacity: 0.3;
    }
	
	#formMessageBox {
    padding: 70px 20px;
    background-color: #d0e3ea;
    border: 1px solid #337c95;
    border-radius: 20px;
    font-size: 19px;
}
span.error{
	color: red;
	font-size: 14px;
}

/* HTML: <div class="loader"></div> */
.section-loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #478da4;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}


.loader {
    /* padding-left: 350px; */
    display: flex !important;
    justify-content: center;
    align-items: center;
    /* height: 70vh; */
}

/* Arabic css */
/* -------- HERO SECTION RTL -------- */
html[dir="rtl"] .hero-content {
    padding-left: 0;
    padding-right: 80px;
    /* padding-right: 70px; */
    text-align: right;
}

html[dir="rtl"] .hero-section .swiper-controls {
       left: 100px;
	  right: unset;
    }

html[dir="rtl"] .hero-section .swiper-controls .swiper-button-next {
    left: -51px ;
}

html[dir="rtl"] .hero-section .swiper-controls .swiper-button-prev {
    right: -51px;
}
html[dir="rtl"] .highlight-next {
    top: 92%;
    left: 0;
}
html[dir="rtl"] .highlight-prev {
    top: 92%;
    right: 0;
}

html[dir="rtl"] .highlight-prev::after, .highlight-next::after {
      font-weight: bold;
    line-height: 2.5;
    margin-right: 38%;
  }
 html[dir="rtl"] .vision-benefits-section{
	  padding-right: 68px;
  } 
 html[dir="rtl"] .vb-inner {
    /* padding-left: 12%; */
    padding-right: 6%;
}
html[dir="rtl"] .vb-table .image-left{
	padding-right: 8.5%;
	padding-left: 0%;
}
html[dir="rtl"] span.error {
        display: flex;
}
  
  @media (max-width: 480px) {
 /* Arabic css */
/* -------- HERO SECTION RTL -------- */
html[dir="rtl"] .hero-content {
    padding-left: 0;
    padding-right: 15px;
    text-align: right;
}
html[dir="rtl"] .swiper-controls {
    left: 50% !important;
     
}
html[dir="rtl"] .vb-list { text-align: right; padding: 0; }
 html[dir="rtl"] .vb-inner {
       padding-right: 0%;
}
}
@media (max-width: 1024px) {
	/* html[dir="rtl"] .project-Update .pu-item p { */
    /* min-height: unset; */
/* } */
}

html[dir="rtl"] .hero-content h1 {
   	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .hero-content h2 {
   	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .hero-content p {
    	font-family: 'Tajawal', sans-serif;
	font-weight: 500;
}

html[dir="rtl"] .about-section h2 {
   
	font-family: 'Tajawal', sans-serif;
}

html[dir="rtl"] .about-section p {
  
	font-family: 'Tajawal', sans-serif;
}

html[dir="rtl"] .highlights-title {
   
	font-family: 'Tajawal', sans-serif;
}

html[dir="rtl"] .highlight-overlay h3 {
   	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .highlight-overlay p {
	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .vb-content h2 {
   	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .vb-content p {
   	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .vb-cell .vb-inner h3 {
      font-family: 'Tajawal', sans-serif;
    font-weight: 500;
}
html[dir="rtl"] .pu-title {
    	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .project-Update .pu-subtitle {
    	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .project-Update .pu-latest-title {
   	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .project-Update .pu-item {
    	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .pu-item-title {
    	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .pu-item-text {
    	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .faq-title {
    	font-family: 'Tajawal', sans-serif;
	font-style: normal;
}
html[dir="rtl"] .faq-question {
    	font-family: 'Tajawal', sans-serif;
		text-align: right;
}
html[dir="rtl"] .faq-answer p {
    	font-family: 'Tajawal', sans-serif;
		
}
html[dir="rtl"] .contact-title {
   	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .contact-subtitle {
  	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .contact-section .contact-tags {
    	font-weight: 400;
	font-family: 'Tajawal', sans-serif; 
}
html[dir="rtl"] .contact-container #musaffahContactUsForm label {
  	font-family: 'Tajawal', sans-serif;
}
html[dir="rtl"] .verticalSwiper .swiper-slide {
    font-family: 'Tajawal', sans-serif;
 }


.musaffah-emirate-div select{
	-webkit-appearance: auto; 
  -moz-appearance: auto;
  appearance: auto;
	
}

/* Chrome, Edge, Safari */

html[dir="rtl"] ::-webkit-input-placeholder {

  font-family: "Tajawal", sans-serif;

}
 
/* Firefox */

html[dir="rtl"] ::-moz-placeholder {

  font-family: "Tajawal", sans-serif;

  opacity: 1;

}
 
/* Internet Explorer */

html[dir="rtl"] :-ms-input-placeholder {

  font-family: "Tajawal", sans-serif;

}
 
/* Standard */

html[dir="rtl"] ::placeholder {

  font-family: "Tajawal", sans-serif;

}

html[dir="rtl"] select {

  font-family: "Tajawal", sans-serif !important;

}
 