* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #fff;
}

.container {
    width: 100%;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    border-bottom: none;
    transition: all 0.3s ease;
    height: 80px;
    margin-top: 10px;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    transform: translateY(0);
    margin-top: 0px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1920px;
    padding: 0 30px;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 15px;
    transform: translate(-50%, -50%);
    padding: 10px;
    z-index: 2;
    transition: all 0.3s ease;
}

.logo img {
    height: 90px;
    width: 300px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transform-origin: center center;
    background: transparent;
    object-fit: contain;
}

.logo:hover img {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

header.scrolled .logo {
    transform: translate(-50%, -50%);
}

header.scrolled .logo img {
    height: 65px;
    width: 250px;
}

.header-line {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 25%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.4) 75%,
            transparent 100%);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover {
    transform: translateY(-50%) scale(1.1);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    position: relative;
    transform-origin: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle span:nth-child(1) {
    width: 100%;
    transform: scaleX(1);
}

.menu-toggle span:nth-child(2) {
    width: 70%;
    transform: scaleX(0.7);
}

.menu-toggle span:nth-child(3) {
    width: 40%;
    transform: scaleX(0.4);
}

.menu-toggle:hover span {
    width: 100%;
    transform: scaleX(1);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    width: 100%;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    width: 100%;
}

@media (max-width: 768px) {
    header .container {
        padding: 10px 15px;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        margin: 0;
        flex: 0 0 auto;
        order: 1;
    }

    .logo img {
        max-width: 120px;
        height: auto;
    }

    .menu-toggle {
        order: 2;
        margin-left: auto;
    }

    .floating-message {
        order: 3;
        margin-left: 15px;
    }

    nav {
        display: none;
    }

    .hero-content {
        padding: 0 20px;
    }
}

nav {
    margin-left: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    outline: none;
}

nav ul li a:hover,
nav ul li a:focus,
nav ul li a:active {
    opacity: 0.8;
    text-decoration: none;
    outline: none;
}

.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(20, 25, 40, 0.01), rgba(20, 25, 40, 0.01)), url('images/building.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: background-position 0.5s ease;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 25, 40, 0.6);
    z-index: 1;
}

.hero-content {
    padding: 0 15px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(50px);
}

.hero h2 {
    font-family: 'Dutch801 BT', serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
    margin-top: -80px;
}

.hero h1 {
    font-family: 'Dutch801 BT', serif;
    font-size: 48px;
    margin-bottom: 35px;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(to right bottom,
            #FFFFFF 30%,
            #D4AF37 50%,
            #FFFFFF 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero h1::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 3s infinite linear;
    opacity: 0.7;
}

.hero .btn {
    display: inline-block;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 1.1s;
    white-space: nowrap;
}

.hero .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: all 0.8s;
}

.hero .btn:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
}

.hero .btn:hover::before {
    left: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.hero img {
    transition: transform 0.5s ease;
}

/* About Section Advanced Styles */
.about {
    padding: 60px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
}

.about-image-column {
    flex: 1;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 3/3;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-column {
    flex: 1;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.about-text-content {
    margin-bottom: 30px;
}

.about-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
    color: #babc24;
}

.about-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-services {
    display: flex;
    gap: 20px;
    margin-top: 0;
}

.service-item {
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    padding: 10px;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 295px;
    height: 95px;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.15);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon img {
    filter: brightness(1.1);
}

.service-name {
    font-size: 16px;
    color: #333;
    margin-top: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Dutch801 BT', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-item:hover .service-name {
    color: #dab06e;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .about-image-wrapper {
        aspect-ratio: 16/12;
    }

    .about-content-column {
        text-align: center;
        padding: 0;
    }

    .about-services {
        justify-content: center;
    }

    .service-icon {
        width: 80px;
        height: 80px;
    }

    .service-name {
        font-size: 14px;
    }

    .about-services {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-services {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .service-item {
        width: 100%;
        max-width: 220px;
        padding: 8px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .about-services {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 30px 0;
    }

    .about-title {
        font-size: 24px;
    }

    .about-subtitle {
        font-size: 12px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
    }

    .service-name {
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .about-services {
        gap: 10px;
    }
}

/* Remove unnecessary effects and overlays */
.about-overlay,
.about-image-wrapper::after {
    display: none;
}

/* Luxury Section Styles */
.luxury {
    height: 80vh;
    background-image: linear-gradient(135deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(212, 175, 55, 0.3) 100%), url('images/g45v2hkazb71.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(212, 175, 55, 0.1) 0%,
            transparent 45%,
            transparent 55%,
            rgba(212, 175, 55, 0.1) 100%);
    animation: shimmer 6s linear infinite;
}

.luxury-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1000px;
}

.luxury h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 4px;
    background: linear-gradient(to right, #fff, #D4AF37, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    line-height: 1.2;
    text-transform: capitalize;
    animation: textShine 3s linear infinite;
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.luxury h2 span {
    display: block;
    font-size: 0.5em;
    margin-top: 10px;
    background: linear-gradient(to right, #D4AF37, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.9;
}

.luxury p {
    font-size: 1rem;
    background: linear-gradient(45deg, #D4AF37, #fff, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 300;
    position: relative;
    padding: 10px 0;
    animation: gradientMove 3s ease infinite;
}

.luxury p::before,
.luxury p::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(212, 175, 55, 0.5),
            transparent);
}

.luxury p::before {
    top: 0;
    animation: lineWidth 3s ease-in-out infinite;
}

.luxury p::after {
    bottom: 0;
    animation: lineWidth 3s ease-in-out infinite reverse;
}

@keyframes textShine {
    0% {
        background-position: -500% center;
    }

    100% {
        background-position: 500% center;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes lineWidth {

    0%,
    100% {
        transform: scaleX(0.2);
        opacity: 0.5;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Text hover effects */
.luxury-content:hover h2 {
    transform: perspective(500px) translateZ(20px);
    transition: transform 0.3s ease;
}

.luxury-content:hover p {
    letter-spacing: 10px;
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .luxury h2 {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }

    .luxury p {
        font-size: 1.8rem;
        letter-spacing: 6px;
    }
}

@media (max-width: 768px) {
    .luxury h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .luxury p {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    .luxury-content:hover p {
        letter-spacing: 6px;
    }
}

@media (max-width: 480px) {
    .luxury h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .luxury p {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .luxury-content:hover p {
        letter-spacing: 4px;
    }
}

/* Animations */
@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-45deg);
    }

    100% {
        transform: translateX(100%) skewX(-45deg);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .luxury h2 {
        font-size: 3.5rem;
    }

    .luxury p {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .luxury {
        height: 80vh;
        background-attachment: scroll;
    }

    .luxury h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .luxury h2::before,
    .luxury h2::after {
        width: 80px;
    }

    .luxury p {
        font-size: 1.4rem;
        letter-spacing: 2px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .luxury h2 {
        font-size: 2rem;
    }

    .luxury p {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}

/* Add hover effects */
.luxury-content:hover h2 {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.luxury-content:hover p {
    color: #fff;
    transition: color 0.3s ease;
}

/* Benefits Section Styles */
.benefits {
    padding: 0;
    background: linear-gradient(#00000000, #00000000, #00000000), url('images/luxury-building.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    margin-top: 110px;
}

.benefits h2 {
    text-align: center;
    margin: 10px 0 20px;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.benefits-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    z-index: 2;
}

/* Add a subtle overlay for better card visibility */
.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Enhance card visibility against background */
.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .benefits {
        background-attachment: scroll;
    }
}

.benefits-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease-in-out;
    padding: 20px 0 40px;
    align-items: center;
}

.benefit-card {
    flex: 0 0 calc(33.333% - 20px);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    height: 400px;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: all 0.6s ease;
}

/* Middle card styles */
.benefit-card:nth-child(3n + 2) {
    height: 440px;
    transform: translateY(-20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.benefit-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), transparent);
    color: #fff;
    text-align: center;
}

/* Enhanced content for middle card */
.benefit-card:nth-child(3n + 2) .benefit-content {
    padding: 50px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5), transparent);
}

.benefit-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFD700;
    text-transform: uppercase;
}

/* Enhanced title for middle card */
.benefit-card:nth-child(3n + 2) .benefit-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefit-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
    max-width: 80%;
    margin: 0 auto;
}

/* Enhanced text for middle card */
.benefit-card:nth-child(3n + 2) .benefit-content p {
    font-size: 1.1rem;
    opacity: 1;
}

@media (max-width: 1200px) {
    .benefits-wrapper {
        max-width: 1100px;
    }

    .benefit-card {
        height: 350px;
    }

    .benefit-card:nth-child(3n + 2) {
        height: 390px;
    }

    .benefit-content h3 {
        font-size: 1.5rem;
    }

    .benefit-card:nth-child(3n + 2) .benefit-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 992px) {
    .benefits h2 {
        margin: 10px 0 15px;
        font-size: 1.8rem;
    }

    .benefit-card {
        height: 300px;
    }

    .benefit-card:nth-child(3n + 2) {
        height: 340px;
        transform: translateY(-15px);
    }

    .benefit-content {
        padding: 30px 20px;
    }

    .benefit-card:nth-child(3n + 2) .benefit-content {
        padding: 40px 20px;
    }

    .benefit-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .benefit-card:nth-child(3n + 2) .benefit-content h3 {
        font-size: 1.5rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }

    .benefit-card:nth-child(3n + 2) .benefit-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 40px 0;
    }

    .benefits h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .benefits-wrapper {
        padding: 0;
        margin: 0;
    }

    .benefit-card {
        margin: 0;
        padding: 20px;
        width: 100%;
    }

    .benefit-card:nth-child(3n + 2) {
        margin: 0;
    }

    .benefit-content {
        padding: 15px;
    }

    .benefit-card:nth-child(3n + 2) .benefit-content {
        padding: 15px;
    }

    .benefit-content h3,
    .benefit-card:nth-child(3n + 2) .benefit-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .benefit-content p,
    .benefit-card:nth-child(3n + 2) .benefit-content p {
        font-size: 0.9rem;
        margin: 0;
    }
}

.featured {
    width: 380px;
    height: 580px;
    margin-top: -30px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-image {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px 20px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #D4AF37;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        width: 100%;
    }
}

/* Projects Section Styles */
.projects {
    padding: 40px 0;
    background-color: #dab06e;
}

.projects-title {
    text-align: center;
    color: #fff;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.project-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.project-overlay h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .project-card {
        height: 300px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .project-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.2),
                rgba(0, 0, 0, 0.8));
    }

    .project-overlay h3 {
        font-size: 24px;
        font-weight: 600;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        padding: 0 15px;
        gap: 15px;
    }

    .project-card {
        height: 250px;
    }

    .projects-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

header.scrolled .hero img {
    transform: scale(0.85);
    transition: all 0.3s ease;
}

header.scrolled .header-line {
    opacity: 0;
}

header.scrolled .menu-toggle span {
    height: 1px;
}

header.scrolled nav ul li a {
    font-size: 14px;
    font-weight: 500;
}

/* Navigation Overlay Styles */
.nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    max-width: 400px;
}

.nav-overlay.active {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 2001;
}

.nav-close span {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: white;
    top: 50%;
    left: 0;
}

.nav-close span:first-child {
    transform: rotate(45deg);
}

.nav-close span:last-child {
    transform: rotate(-45deg);
}

.nav-content {
    text-align: left;
    padding: 40px 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    margin-top: 100px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 300px;
}

.nav-menu li {
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    transition-delay: calc(0.05s * var(--i, 0));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 2px;
    position: relative;
    display: block;
    padding: 10px 0;
    transition: all 0.3s ease;
    font-weight: 400;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #D4AF37;
    padding-left: 10px;
}

.nav-menu a:hover::after {
    width: 100%;
    background-color: #D4AF37;
}

.nav-overlay.active .nav-menu li {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .nav-content {
        margin-top: 80px;
        padding: 40px 30px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .nav-menu li {
        padding-bottom: 10px;
    }
}

/* Remove arrow-related styles */
.arrow {
    display: none;
}

@media (max-width: 768px) {
    .nav-content {
        margin-top: 80px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu a {
        font-size: 14px;
    }
}

/* Slider Section Styles */
.slider-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f1f1 0%, #f6f4f4 50%, #f8f0f0 100%);
    overflow: hidden;
    position: relative;
}

/* Enhanced Projects Title Styling */
.slider-section h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
    background: linear-gradient(to right, #fff, #D4AF37, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.slider-section h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
}

.slider-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
}

/* Add animation */
@keyframes titleGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    50% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

.slider-section h2 {
    animation: titleGlow 3s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .slider-section h2 {
        font-size: 3rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .slider-section h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .slider-section h2::before {
        width: 80px;
    }

    .slider-section h2::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .slider-section h2 {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .slider-section h2::before {
        width: 60px;
    }

    .slider-section h2::after {
        width: 40px;
    }
}

.slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
    pointer-events: none;
}

/* Ensure all existing carousel elements are visible against new background */
.carousel-slide {
    position: relative;
    z-index: 2;
}

.carousel-button {
    background: rgba(255, 255, 255, 0.95);
    z-index: 3;
}

.slide-dots .dot {
    background: rgba(255, 255, 255, 0.3);
}

.slide-dots .dot.active {
    background: rgba(255, 255, 255, 0.9);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel {
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.carousel-container {
    position: relative;
    background-color: #000;
}

.slide-card {
    position: relative;
    height: 650px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.slide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide-card:hover img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    transition: background 0.3s ease;
}

.slide-card:hover .slide-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.9) 100%);
}

.slide-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    padding: 40px;
    color: #fff;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.slide-card:hover .slide-content {
    transform: translateY(-10px);
}

.slide-content h3 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 20px;
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slide-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dots .dot.active {
    background: #fff;
    transform: scale(1.2);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 3;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-button svg {
    width: 24px;
    height: 24px;
    color: #333;
}

@media (max-width: 768px) {
    .slide-card {
        height: 400px;
    }

    .slide-content h3 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
    }

    .carousel-button svg {
        width: 20px;
        height: 20px;
    }
}

.benefits .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Add particle animations */
.risk-mitigation {
    padding: 80px 0;
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/5.JPG');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.risk-mitigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    background-size: 200% 200%;
    animation: backgroundShift 15s ease infinite;
    z-index: 0;
}

/* Particle effect */
.risk-mitigation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 100px 100px;
    background-position: 0 0, 0 0, 50px 50px, 50px 50px;
    animation: particleMove 20s linear infinite;
    opacity: 0.3;
    z-index: 0;
}

@keyframes particleMove {
    0% {
        background-position: 0 0, 0 0, 50px 50px, 50px 50px;
    }

    100% {
        background-position: 100px 100px, 100px 100px, 150px 150px, 150px 150px;
    }
}

.risk-mitigation .container {
    position: relative;
    z-index: 1;
}

.risk-mitigation h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 500;
    animation: fadeIn 1.5s ease-out both;
}

.risk-mitigation .underline {
    width: 60px;
    height: 3px;
    background-color: #D4AF37;
    margin: 0 auto 25px;
    animation: slideUp 1s ease 0.3s both;
}

.risk-mitigation h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.risk-mitigation .subtitle {
    color: #fff;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.7s forwards;
}

.risk-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.risk-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 350px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    opacity: 0;
    transform: translateY(50px);
    border: 2px solid transparent;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.5s ease,
        border-color 0.3s ease;
}

.risk-card:nth-child(1) {
    animation: slideUp 0.8s ease 0.9s forwards;
}

.risk-card:nth-child(2) {
    animation: slideUp 0.8s ease 1.1s forwards;
}

.risk-card:nth-child(3) {
    animation: slideUp 0.8s ease 1.3s forwards;
}

.risk-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.risk-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.risk-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.risk-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.5s ease;
}

.risk-card:hover .risk-icon img {
    transform: scale(1.1);
}

.risk-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.risk-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    transition: width 0.4s ease;
}

.risk-card:hover h4 {
    color: #D4AF37;
}

.risk-card:hover h4::after {
    width: 50px;
}

.risk-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    transition: color 0.3s ease;
}

/* Add intersection observer animation support */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .risk-cards {
        flex-direction: column;
        align-items: center;
    }

    .risk-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.channel-partner {
    padding: 80px 0;
    background-color: rgba(50, 50, 50, 0.85);
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('images/handshake-CVpph5Rk.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.partner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.channel-partner h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
}

.channel-partner p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.6;
}

.partner-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.partner-btn:hover {
    background: #fff;
    color: #333;
}

@media (max-width: 768px) {
    .channel-partner h2 {
        font-size: 32px;
    }

    .channel-partner p {
        font-size: 16px;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 80px 0;
    background-color: #fff;
}

.form-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.form-text {
    flex: 1;
    padding: 80px 60px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-text h2 {
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
    color: #000;
    text-transform: uppercase;
}

.form-text p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
}

.form-inputs {
    flex: 1;
    padding: 60px;
    background-color: #dab06e;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-field {
    margin-bottom: 25px;
}

.input-field label {
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 500;
}

.input-field input {
    width: 100%;
    padding: 16px 25px;
    border: none;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #000;
    font-size: 16px;
}

.input-field input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
}

.submit-container {
    text-align: center;
    margin-top: 35px;
}

.submit-btn {
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 14px 70px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.submit-btn:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .form-container {
        flex-direction: column;
        height: auto;
    }

    .form-text,
    .form-inputs {
        padding: 50px 40px;
    }

    .form-text h2 {
        font-size: 55px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 50px 0;
    }

    .form-text,
    .form-inputs {
        padding: 30px 15px;
    }

    .form-text h2 {
        font-size: 45px;
    }

    .input-field label {
        font-size: 18px;
    }

    .submit-btn {
        padding: 12px 50px;
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;

    }

    .footer-about,
    .footer-contact {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-content {
        gap: 10px;
    }

    .service {
        text-align: center;
    }

    .divider {
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 14px;
    }

    .container {
        width: 100%;
        padding: 0 15px;
    }

    .submit-btn {
        width: 100%;
    }

    .about-text h2 {
        font-size: 20px;
    }

    .services {
        flex-direction: column;
        gap: 20px;
    }

    .divider {
        width: 80%;
        height: 1px;
        margin: 10px 0;
    }

    .channel-partner h2 {
        font-size: 24px;
    }

    .risk-mitigation h2 {
        font-size: 24px;
    }
}

/* Project Popup Styles */
.project-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-popup.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease;
}

.popup-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.popup-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.popup-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.popup-overlay h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.popup-body {
    padding: 20px;
    max-height: calc(90vh - 250px);
    overflow-y: auto;
}

.location-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.location-icon {
    margin-right: 8px;
    font-size: 18px;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.detail-item h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #777;
    text-transform: uppercase;
}

.detail-item p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.description h3,
.amenities h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
    color: #333;
}

.description p {
    margin: 0 0 20px 0;
    line-height: 1.6;
    color: #555;
}

.amenities ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.amenities li {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.amenities li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

@media (max-width: 768px) {
    .project-details {
        grid-template-columns: 1fr;
    }

    .amenities ul {
        grid-template-columns: 1fr;
    }

    .popup-header {
        height: 200px;
    }
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FFD700, transparent);
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-about {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 100px;
    width: 250px;
    transition: all 0.3s ease;
    background: transparent;
    object-fit: contain;
}

.footer-about p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
}

.social-link:hover {
    background: #FFD700;
    transform: translateY(-3px);
    color: #1a1a1a;
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-top: 15px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

.footer h4 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #FFD700;
}

.footer-links ul,
.footer-projects ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-projects li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-projects a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover,
.footer-projects a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.7;
}

.contact-icon.phone {
    background-image: url('Fonts/phone-icon.svg');
}

.contact-icon.email {
    background-image: url('Fonts/email-icon.svg');
}

.contact-icon.location {
    background-image: url('Fonts/location-icon.svg');
}

.contact-text p {
    color: #999;
    margin: 0;
    line-height: 1.5;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FFD700;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Partner Form Popup Styles */
.partner-form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.partner-form-popup.active {
    opacity: 1;
    visibility: visible;
}

.partner-form-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.partner-form-popup.active .partner-form-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-popup:hover {
    color: #000;
    transform: rotate(90deg);
}

.partner-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.partner-form-header h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.partner-form-header p {
    color: #666;
    font-size: 16px;
}

.partner-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.partner-form .form-group input,
.partner-form .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
}

.partner-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.partner-form .form-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
}

.partner-form .form-group input:focus,
.partner-form .form-group select:focus {
    border-color: #D4AF37;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.partner-form .form-group input:focus+label,
.partner-form .form-group input:not(:placeholder-shown)+label,
.partner-form .form-group select:focus+label,
.partner-form .form-group select:not(:placeholder-shown)+label {
    top: 0;
    transform: translateY(-50%) scale(0.8);
    background: #fff;
    padding: 0 6px;
}

.submit-partner-form {
    width: 100%;
    padding: 14px;
    background: #D4AF37;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-partner-form:hover {
    background: #b69730;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .partner-form-content {
        padding: 30px 20px;
    }

    .partner-form-header h2 {
        font-size: 24px;
    }

    .partner-form .form-group input,
    .partner-form .form-group select {
        font-size: 14px;
    }
}

/* Navigation Active States */
.nav-menu a.active {
    color: #D4AF37;
}

.nav-menu a.active::after {
    width: 100%;
    background-color: #D4AF37;
}

.nav-menu a.active .arrow {
    transform: translateX(5px);
    color: #D4AF37;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Adjust based on your header height */
}

@font-face {
    font-family: 'Dutch801 BT';
    src: url('Fonts/dutch.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.floating-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-message svg {
    width: 32px;
    height: 32px;
    stroke: #D4AF37;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.floating-message:hover svg {
    transform: scale(1.1);
    stroke: #b69730;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 10;
}

.close-popup svg {
    width: 20px;
    height: 20px;
    stroke: #666;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.close-popup:hover svg {
    stroke: #333;
}

@media (max-width: 768px) {
    .floating-message {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-message svg {
        width: 28px;
        height: 28px;
    }

    .close-popup {
        top: 15px;
        right: 15px;
        width: 28px;
        height: 28px;
    }

    .close-popup svg {
        width: 16px;
        height: 16px;
    }
}

.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    /* Makes the overlay clickable */
}

.contact-popup.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: default;
    /* Resets cursor for the form */
}

.contact-popup.active .contact-popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-popup:hover {
    color: #000;
    transform: rotate(90deg);
}

.contact-popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-popup-header h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-popup-header p {
    color: #666;
    font-size: 16px;
}

.contact-popup-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.contact-popup-form .form-group input,
.contact-popup-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-popup-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-popup-form .form-group input:focus,
.contact-popup-form .form-group textarea:focus {
    border-color: #D4AF37;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-popup-form .form-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #fff;
    padding: 0 6px;
}

.contact-popup-form .form-group textarea+label {
    top: 12px;
    transform: none;
}

.contact-popup-form .form-group input:focus+label,
.contact-popup-form .form-group input:not(:placeholder-shown)+label,
.contact-popup-form .form-group textarea:focus+label,
.contact-popup-form .form-group textarea:not(:placeholder-shown)+label {
    top: 0;
    transform: translateY(-50%) scale(0.8);
    color: #D4AF37;
}

.submit-contact-form {
    width: 100%;
    padding: 14px;
    background: #D4AF37;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-contact-form:hover {
    background: #b69730;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-popup-content {
        padding: 30px 20px;
    }

    .contact-popup-header h2 {
        font-size: 24px;
    }

    .contact-popup-form .form-group input,
    .contact-popup-form .form-group textarea {
        font-size: 14px;
    }
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    gap: 5px;
    padding: 5px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    width: 33.33%;
    text-align: center;
}

.sticky-btn svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.sticky-btn span {
    font-weight: 500;
}

.inquiry-btn svg {
    stroke: #D4AF37;
}

.whatsapp-btn svg {
    stroke: #25D366;
}

.call-btn svg {
    stroke: #007AFF;
}

.sticky-btn:hover {
    transform: translateY(-2px);
}

.inquiry-btn:hover {
    color: #D4AF37;
}

.whatsapp-btn:hover {
    color: #25D366;
}

.call-btn:hover {
    color: #007AFF;
}

@media (max-width: 768px) {
    .mobile-sticky-footer {
        display: flex;
    }

    /* Add padding to the bottom of the body to prevent content from being hidden behind the sticky footer */
    body {
        padding-bottom: 70px;
    }

    /* Hide the floating message icon on mobile since we have the sticky footer */
    .floating-message {
        display: none;
    }
}

.contact-popup .close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0;
}

.contact-popup .close-popup:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.contact-popup .close-popup svg {
    width: 16px;
    height: 16px;
    stroke: #333;
    stroke-width: 2;
    pointer-events: none;
}

.contact-popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: default;
    z-index: 999;
}

/* Ensure the popup overlay doesn't interfere with the close button */
.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.section-title {
    text-align: center;
    color: #333;
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #D4AF37;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
        padding-bottom: 15px;
    }

    .section-title::after {
        width: 60px;
    }
}

/* About Section Mobile Responsiveness */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .about-image-wrapper {
        height: 400px;
    }

    .about-content-column {
        text-align: center;
        padding: 0;
    }

    .about-subtitle {
        padding-left: 0;
        margin: 0 auto 15px;
        font-size: 13px;
    }

    .about-subtitle::before {
        display: none;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-description {
        margin: 0 auto 30px;
        font-size: 15px;
        padding: 20px;
    }

    .about-services {
        justify-content: center;
        gap: 30px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
    }

    .service-name {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-image-wrapper {
        height: 350px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description {
        font-size: 14px;
        padding: 15px;
    }

    .about-services {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .service-item {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 30px 0;
    }

    .about-image-wrapper {
        height: 280px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
    }
}

/* Risk Mitigation Section Height Reduction */
.risk-mitigation {
    padding: 50px 0;
}

.risk-cards {
    margin-top: 10px;
}

.risk-card {
    min-height: 220px;
    padding: 25px;
}

@media (max-width: 992px) {
    .risk-mitigation {
        padding: 40px 0;
    }

    .risk-mitigation h2 {
        font-size: 32px;
        margin-bottom: 3px;
    }

    .risk-mitigation h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .risk-mitigation .subtitle {
        margin-bottom: 30px;
        font-size: 15px;
    }

    .risk-card {
        min-height: 200px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .risk-mitigation {
        padding: 35px 0;
    }

    .risk-mitigation h2 {
        font-size: 28px;
    }

    .risk-cards {
        margin-top: 25px;
        gap: 20px;
    }

    .risk-card {
        min-height: 180px;
        padding: 20px 15px;
    }

    .risk-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .risk-mitigation {
        padding: 30px 0;
    }

    .risk-mitigation h2 {
        font-size: 24px;
    }

    .risk-mitigation .subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .risk-card {
        min-height: 160px;
        padding: 15px;
    }

    .risk-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .risk-card p {
        font-size: 13px;
    }
}

.icr-section {
    width: 100%;
    height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.icr-main-title {
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.icr-carousel-container {
    width: 100%;
    position: relative;
    padding: 5px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.icr-carousel {
    display: flex;
    position: relative;
    gap: 40px;
    padding: 40px 0;
    transition: transform 0.5s ease-in-out;
}

.icr-card {
    min-width: calc(33.333% - 27px);
    height: 380px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    transform-origin: center;
    filter: brightness(0.9);
    background: #222;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.icr-card.icr-active {
    height: 400px;
    transform: scale(1.15);
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    filter: brightness(1);
}

.icr-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: filter 0.5s;
}

.icr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.85));
    z-index: 1;
}

.icr-card.icr-active::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.75));
}

.icr-card-content {
    position: relative;
    z-index: 2;
    padding: 35px;
}

.icr-card h2 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.icr-card.icr-active h2 {
    color: #FFD700;
    font-size: 2.2rem;
}

.icr-card p {
    color: #fff;
    line-height: 1.6;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    max-width: 90%;
}

.icr-card.icr-active p {
    font-size: 1.1rem;
    opacity: 1;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .icr-carousel-container {
        max-width: 900px;
    }

    .icr-card {
        min-width: calc(33.333% - 27px);
        height: 350px;
    }

    .icr-card.icr-active {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .icr-section {
        height: 60vh;
    }

    .icr-carousel-container {
        max-width: 100%;
        padding: 10px;
    }

    .icr-card {
        min-width: 100%;
        height: 300px;
    }

    .icr-card.icr-active {
        height: 350px;
        transform: scale(1.05);
    }

    .icr-main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .icr-card h2 {
        font-size: 1.6rem;
    }

    .icr-card.icr-active h2 {
        font-size: 1.8rem;
    }

    .icr-card p {
        font-size: 0.95rem;
    }

    .icr-card.icr-active p {
        font-size: 1rem;
    }
}

/* Investment Reasons Section */
.investment-reasons {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .investment-grid {
        grid-template-columns: 1fr;
    }
}

.investment-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #f7d774);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.investment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.investment-card:hover::before {
    transform: scaleX(1);
}

.inv-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    color: #D4AF37;
}

.investment-card:hover .inv-icon {
    background: #D4AF37;
    color: #fff;
    transform: rotateY(180deg);
}

.inv-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.4s ease;
}

.investment-card:hover .inv-icon svg {
    transform: rotateY(180deg);
}

.investment-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Dutch801 BT', serif;
    letter-spacing: 0.5px;
}

.investment-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Leadership Team Section */
.leadership-team {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.leadership-header {
    text-align: center;
    margin-bottom: 60px;
}

.leadership-header .subtitle {
    display: block;
    color: #D4AF37;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.leadership-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: 'Dutch801 BT', serif;
}

.leadership-header .section-desc {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.leader-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}



.leader-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-family: 'Dutch801 BT', serif;
}

.leader-role {
    font-size: 13px;
    color: #D4AF37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.leader-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-top: auto;
}

@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}