/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Updated Castle 10 Color Scheme - Based on Logo Colors */
:root {
    /* Updated colors to match the Castle 10 logo */
    --primary-color: #2f5592;      /* Dark Blue */
    --secondary-color: #3a6fc9;    /* Medium Blue */
    --accent-color: #1d3461;       /* Navy Blue */
    --light-color: #f5f6fa;        /* Light Gray */
    --dark-color: #2c3e50;         /* Dark Gray */
    --text-color: #333;            /* Dark Text */
    --text-light: #777;            /* Light Text */
    --white: #fff;                 /* White */
    --black: #000;                 /* Black */
    
    /* Updated gradients */
    --gradient-primary: linear-gradient(to right, #2f5592, #3a6fc9);       /* Blue Gradient */
    --gradient-secondary: linear-gradient(to right, #1d3461, #2f5592);     /* Dark Blue Gradient */
    --gradient-accent: linear-gradient(135deg, #2f5592, #1d3461);         /* Mix Gradient */
    
    /* Keep other variables the same */
    --transition: all 0.3s ease;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 5rem;
    font-weight: 600;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
}

.section-padding {
    padding: 10rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.6rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10rem;
    height: 0.4rem;
    background: var(--gradient-primary);
    border-radius: 2rem;
}

.section-title h2 span {
    color: var(--accent-color);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.8rem;
    max-width: 70rem;
    margin: 0 auto;
}

.section-title.light h2, 
.section-title.light p {
    color: var(--white);
}

.section-title.light h2::after {
    background: var(--white);
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 2rem;
}

.mt-50 {
    margin-top: 5rem;
}

.w-100 {
    width: 100%;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    position: relative;
    width: 10rem;
    height: 10rem;
    margin: 0 auto 2rem;
}

.loader-logo span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.loader-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       border: 0.8rem solid rgba(47, 85, 146, 0.2);
    border-top: 0.8rem solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
}

.header.scrolled .logo img {
    width: 4rem;
    height: 4rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--white);
    line-height: 1;
    transition: var(--transition);
}

.header.scrolled .logo-title {
    color: var(--primary-color);
    font-size: 2rem;
}

.logo-tagline {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.header.scrolled .logo-tagline {
    color: var(--secondary-color);
}

.navbar ul {
    display: flex;
    gap: 3rem;
}

.navbar ul li a {
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--white);
    position: relative;
}

.header.scrolled .navbar ul li a {
    color: var(--primary-color);
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 0.2rem;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    width: 100%;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: var(--accent-color);
}

.mobile-menu-btn {
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    display: none;
    transition: var(--transition);
}

.header.scrolled .mobile-menu-btn {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 70rem;
    position: relative;
}

.hero-slider {
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #1d3461, #2f5592);
    opacity: 0.85;
    z-index: 1;
}

.hero-slider .slide-1 {
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
}

.hero-slider .slide-2 {
    background-image: url('img/riyadh.jpg');
}

.hero-slider .slide-3 {
    background-image: url('https://www.designboom.com/wp-content/uploads/2024/08/saudi-arabia-fifa-world-cup-2034-designboom-31.jpg');
}

.hero .container {
    z-index: 2;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 80rem;
}

.hero p {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 3rem;
    max-width: 60rem;
    opacity: 0.9;
}

.hero-slider .swiper-pagination {
    bottom: 5rem !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
    background-color: var(--white);
    opacity: 0.5;
    transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background: var(--accent-color);
    border-radius: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.stat-item:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-md);
    background: linear-gradient(to bottom right, rgba(63, 81, 181, 0.1), rgba(124, 77, 255, 0.1));
}

.stat-item h4 {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--primary-color), transparent);
    opacity: 0.7;
}

.about-image img {
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Values Section */
.values {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.values::before,
.values::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.values::before {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.1), transparent 70%);
}

.values::after {
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(63, 81, 181, 0.1), transparent 70%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-lg);
}

.value-card-header {
    background: var(--gradient-primary);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color),
        var(--primary-color)
    );
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.value-card:hover .value-card-header::before {
    opacity: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.value-card-icon {
    position: relative;
    z-index: 2;
    width: 8rem;
    height: 8rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: var(--transition);
}

.value-card:hover .value-card-icon {
    transform: rotate(360deg);
    background-color: var(--white);
    color: var(--primary-color);
}

.value-card-body {
    padding: 3rem 2rem;
    text-align: center;
}

.value-card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.value-card-title::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.3rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    transition: width 0.3s ease;
}

.value-card:hover .value-card-title::after {
    width: 8rem;
}

.value-card-description {
    color: var(--text-light);
    font-size: 1.6rem;
    line-height: 1.7;
}

/* Services Section */
.services {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.service-tab {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.service-tab:hover {
    background: rgba(74, 20, 140, 0.1);
    transform: translateY(-3px);
}

.service-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(74, 20, 140, 0.3);
}

/* Service Cards */
.services-card-slider {
    padding-bottom: 6rem;
}

.service-card {
    height: 40rem;
    perspective: 1500px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1rem;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-front {
    background-color: white;
    justify-content: center;
}

.service-card-back {
    background: var(--gradient-accent);
    color: white;
    transform: rotateY(180deg);
    justify-content: space-between;
}

.service-icon {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 4rem;
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.3);
}

.service-card-front h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-summary {
    color: var(--text-light);
    font-size: 1.6rem;
}

.service-card-back h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-card-back h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.3rem;
    background-color: var(--white);
    border-radius: 1rem;
}

.service-details {
    text-align: left;
    margin-bottom: 2rem;
}

.service-details li {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.service-details li i {
    margin-right: 1rem;
    color: var(--white);
    margin-top: 0.4rem;
}

.service-link {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-link:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

/* Slider Navigation */
.slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 2rem;
}

.services-slider-prev,
.services-slider-next {
    position: relative;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0 1rem;
}

.services-slider-prev:hover,
.services-slider-next:hover {
    background: var(--primary-color);
    color: var(--white);
}

.services-slider-prev:after,
.services-slider-next:after {
    display: none;
}

.services-slider-pagination {
    position: relative;
    width: auto;
    bottom: auto;
}

.services-slider-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: var(--transition);
}

.services-slider-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--accent-color);
    transform: scale(1.3);
}

/* Vision 2030 Section */
.vision2030 {
    background: var(--gradient-accent);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision2030::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSI+CjxkZWZzPgo8cGF0dGVybiBpZD0icGF0dGVybiIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiBwYXR0ZXJuVHJhbnNmb3JtPSJyb3RhdGUoNDUpIj4KPHJlY3QgaWQ9InBhdHRlcm4tYmFja2dyb3VuZCIgd2lkdGg9IjQwMCUiIGhlaWdodD0iNDAwJSIgZmlsbD0idHJhbnNwYXJlbnQiPjwvcmVjdD4KIDxyZWN0IHg9Ii0xMCIgeT0iLTEwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiPjwvcmVjdD4KPC9wYXR0ZXJuPgo8L2RlZnM+CjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiPjwvcmVjdD4KPC9zdmc+');
    opacity: 0.4;
    z-index: 0;
}

.vision-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.vision-text h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.vision-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background: var(--white);
    border-radius: 1rem;
}

.vision-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.vision-image {
    position: relative;
}

.vision-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.vision-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.5rem 3rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.6rem;
    box-shadow: var(--shadow-md);
    transform: rotate(-5deg);
}

/* FIFA World Cup Section */
.fifa {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.fifa-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.fifa-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.fifa-image:hover img {
    transform: scale(1.05);
}

.fifa-text h3 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.fifa-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background: var(--accent-color);
    border-radius: 1rem;
}

.fifa-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.fifa-tagline {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 3rem;
}

/* Projects Section */
.projects {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0.2rem;
    background: var(--accent-color);
    transition: var(--transition);
    border-radius: 1rem;
}

.filter-btn:hover::after,
.filter-btn.active::after {
    width: 80%;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--primary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 3rem;
}

.project-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 25rem;
}

.project-item:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-lg);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, var(--primary-color), transparent);
    opacity: 0.7;
    color: var(--white);
    transform: translateY(calc(100% - 7rem));
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.project-link {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: var(--transition);
}

.project-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Testimonials Section */
.testimonials {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.testimonials-slider {
    padding-bottom: 6rem;
}

.testimonial-item {
    background-color: var(--light-color);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content i {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    border: 0.3rem solid var(--accent-color);
}

.testimonial-author-info h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-author-info p {
    font-size: 1.4rem;
    color: var(--text-light);
}

.testimonials-pagination {
    bottom: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: var(--transition);
}

.testimonials-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--accent-color);
    transform: scale(1.3);
}

/* Contact Section */
.contact {
    position: relative;
    background-color: var(--light-color);
    overflow: hidden;
}

.contact::before,
.contact::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: 0;
}

.contact::before {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(63, 81, 181, 0.08), transparent 70%);
}

.contact::after {
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.08), transparent 70%);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background: var(--accent-color);
    border-radius: 1rem;
}

.contact-info p {
    margin-bottom: 3rem;
    color: var(--text-light);
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, rgba(63, 81, 181, 0.1), rgba(124, 77, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-detail-text p,
.contact-detail-text a {
    font-size: 1.6rem;
    color: var(--text-light);
    transition: var(--transition);
}

.contact-detail-text a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 4.5rem;
    height: 4.5rem;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 4rem;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.3rem;
    background: var(--accent-color);
    border-radius: 1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e1e1e1;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    transition: var(--transition);
    background-color: #f9f9f9;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #aaa;
}

textarea.form-control {
    min-height: 15rem;
    resize: vertical;
}

.form-error {
    color: #e74c3c;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    display: none;
}

.form-message {
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.map {
    height: 40rem;
    position: relative;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Section */
.footer {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSI+CjxkZWZzPgo8cGF0dGVybiBpZD0icGF0dGVybiIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiBwYXR0ZXJuVHJhbnNmb3JtPSJyb3RhdGUoNDUpIj4KPHJlY3QgaWQ9InBhdHRlcm4tYmFja2dyb3VuZCIgd2lkdGg9IjQwMCUiIGhlaWdodD0iNDAwJSIgZmlsbD0idHJhbnNwYXJlbnQiPjwvcmVjdD4KIDxyZWN0IHg9Ii0xMCIgeT0iLTEwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiPjwvcmVjdD4KPC9wYXR0ZXJuPgo8L2RlZnM+CjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiPjwvcmVjdD4KPC9zdmc+');
    opacity: 0.4;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.footer-about img {
    height: 5rem;
    margin-bottom: 2rem;
}

.footer-about p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5rem;
    height: 0.3rem;
    background-color: var(--white);
    border-radius: 1rem;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-links a i {
    font-size: 1.2rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    color: var(--white);
    font-size: 1.8rem;
}

.footer-newsletter p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    position: relative;
    margin-bottom: 1.5rem;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding-right: 5rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.newsletter-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 5rem;
    background-color: var(--accent-color);
    border: none;
    border-radius: 0 0.5rem 0.5rem 0;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: #6c3ce7;
}

#newsletter-error {
    color: #ffcccc;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    display: none;
}

#newsletter-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    display: none;
    font-size: 1.4rem;
}

#newsletter-message.success {
    background-color: rgba(47, 158, 68, 0.2);
    color: #d4edda;
    border: 1px solid rgba(47, 158, 68, 0.3);
}

#newsletter-message.error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #f8d7da;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
}

.footer-bottom a {
    color: var(--white);
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom .fa-heart {
    color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* AOS Animation */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 55%;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .about-content,
    .vision-content,
    .fifa-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image,
    .vision-image {
        order: -1;
    }

    .contact-form {
        padding: 3rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 50%;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        flex-direction: column;
        gap: 1rem;
        z-index: 99;
    }

    .navbar.active ul {
        display: flex;
    }

    .navbar ul li {
        text-align: center;
    }

    .navbar ul li a {
        display: block;
        padding: 1rem 0;
        color: var(--primary-color);
    }

    .navbar ul li a::after {
        display: none;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title h2 {
        font-size: 3rem;
    }

    .values-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .service-tabs,
    .projects-filter {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .service-tab,
    .filter-btn {
        width: 100%;
        max-width: 25rem;
        text-align: center;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 1.8rem;
        bottom: 2rem;
        right: 2rem;
    }
}

/* Counter Animation */
.counter {
    display: inline-block;
}


/* Leadership Section Styles */
.leadership {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.leadership::before,
.leadership::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.1), transparent 70%);
    z-index: 0;
}

.leadership::before {
    top: -100px;
    right: -100px;
}

.leadership::after {
    bottom: -100px;
    left: -100px;
}

.leadership-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.leadership-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leadership-image:hover img {
    transform: scale(1.05);
}

.leader-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, var(--primary-color), transparent);
    opacity: 0.7; 
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.leader-title span {
    font-size: 1.6rem;
    font-weight: 600;
}

.leadership-text {
    padding: 2rem;
}

.leadership-text h3 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.leadership-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
}

.leadership-text p {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .leadership-content {
        grid-template-columns: 1fr;
    }
    
    .leadership-image.left {
        order: 1;
    }
    
    .leadership-text {
        order: 2;
    }
    
    .leadership-image.right {
        order: 3;
    }
    
    .leadership-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .leadership-text h3 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .leadership-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .leadership-text p {
        text-align: center;
    }
}
/* Clients Section Styles */
.clients {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.clients::before,
.clients::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.1), transparent 70%);
    z-index: 0;
}

.clients::before {
    top: -100px;
    right: -100px;
}

.clients::after {
    bottom: -100px;
    left: -100px;
}

/* Marquee Styles */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    z-index: 1;
}

.marquee-wrapper {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    padding: 1rem 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    margin: 0 2rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 120px;
    filter: grayscale(100%);
    opacity: 0.7;
    cursor: pointer;
}

.client-logo:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-md);
    filter: grayscale(0);
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .client-logo {
        min-width: 180px;
        margin: 0 1.5rem;
        padding: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .client-logo {
        min-width: 150px;
        margin: 0 1rem;
        padding: 1rem;
        height: 100px;
    }
    
    .client-logo img {
        max-height: 60px;
    }
    
    .marquee-content {
        animation: marquee 20s linear infinite;
    }
}



/* General Contracting Page Styles */

/* Variables for General Contracting specific colors */
:root {
    --gc-accent: #c18f40;       /* Gold accent color */
    --gc-accent-light: #e6b964; /* Light gold */
    --gc-dark-blue: #1a2d4c;    /* Dark blue for contrast */
    --gc-overlay: linear-gradient(to right, rgba(29, 52, 97, 0.9), rgba(47, 85, 146, 0.8));
}

/* Hero Section */
.gc-hero {
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    isolation: isolate; /* Creates new stacking context */
}

.gc-hero .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This creates the parallax effect */
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateZ(0);
    will-change: transform; /* Optimizes for animations */
}

.gc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gc-overlay);
    z-index: 0;
}

.gc-hero .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2rem;
}

.gc-hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font size */
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.gc-hero p {
    color: var(--white);
    font-size: clamp(1.2rem, 2vw, 1.8rem); /* Responsive font size */
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .gc-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .gc-hero .parallax-bg {
        background-attachment: scroll; /* Disable parallax on mobile */
    }
}

/* Introduction Section */
.gc-intro {
    position: relative;
}

.gc-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.gc-intro-text {
    text-align: center;
}

.gc-intro-text p {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Services Grid Section */
.gc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.gc-service-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gc-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(26, 45, 76, 0.05) 0%, rgba(193, 143, 64, 0.1) 100%);
    z-index: -1;
    transition: height 0.5s ease;
}

.gc-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.gc-service-card:hover::before {
    height: 100%;
}

.gc-service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(47, 85, 146, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.gc-service-card:hover .gc-service-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--primary-color), var(--gc-accent));
}

.gc-service-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.gc-service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gc-accent);
    border-radius: 3px;
}

.gc-service-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.gc-service-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.gc-service-list li i {
    color: var(--gc-accent);
    margin-right: 1rem;
    margin-top: 0.3rem;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Project Showcase */
.gc-showcase {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background-color: var(--gc-dark-blue); /* Fallback background */
}

.showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1531834685032-c34bf0d84c77?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    opacity: 0.15;
}

.project-slider {
    position: relative;
    padding: 3rem 0 6rem;
    z-index: 1;
}

.project-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, filter 0.3s ease;
    will-change: transform;
}

.project-card:hover .parallax-img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.project-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.project-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.project-location i {
    color: var(--gc-accent);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.project-description {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
    flex-grow: 1;
    font-size: 1.50rem;
}

.project-details {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.25rem;
    margin-top: auto;
}

.detail-item {
    margin-bottom: 0.75rem;
    display: flex;
    font-size: 1rem;
}

.detail-label {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 100px;
    flex-shrink: 0;
}

.detail-value {
    color: var(--text-light);
    font-weight: 500;
}

/* Slider Navigation */
.project-slider .swiper-button-next,
.project-slider .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
    top: 40%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.project-slider .swiper-button-next:after,
.project-slider .swiper-button-prev:after {
    font-size: 1.4rem;
    font-weight: bold;
}

.project-slider .swiper-button-next:hover,
.project-slider .swiper-button-prev:hover {
    opacity: 1;
    background: var(--gc-accent);
    transform: scale(1.05);
}

.project-slider .swiper-pagination {
    bottom: 30px;
}

.project-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.project-slider .swiper-pagination-bullet-active {
    background: var(--gc-accent);
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .project-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gc-showcase {
        padding: 3rem 0;
    }
    
    .showcase-bg {
        background-attachment: scroll;
    }
    
    .project-slider {
        padding: 2rem 0 5rem;
    }
    
    .project-slider .swiper-button-next,
    .project-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .project-content {
        padding: 1.5rem;
    }
    
    .project-content h3 {
        font-size: 2   rem;
    }
    
    .detail-label {
        min-width: 80px;
    }
}
/* Why Choose Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 85, 146, 0.05) 0%, rgba(193, 143, 64, 0.1) 100%);
    z-index: -1;
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.why-us-card:hover::before {
    left: 0;
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-bounce);
}

.why-us-card:hover .why-us-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--primary-color), var(--gc-accent));
}

.why-us-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.why-us-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Policy Section */
.gc-policy {
    position: relative;
    color: var(--white);
}

.bg-gradient {
    background: var(--gradient-primary);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
}

.policy-content p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-icon {
    font-size: 5rem;
    margin-top: 2rem;
    opacity: 0.2;
}

.policy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.policy-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
}

.policy-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.policy-item-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.policy-item-content h3 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-item-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}
/* Call to Action Section */
.cta-section {
    position: relative;
    padding: 5rem 0;
    background: var(--gc-dark-blue);
    color: var(--white);
    overflow: hidden;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gc-overlay);
    z-index: -1;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--gc-accent);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-light {
    background-color: var(--white);
    color: var(--gc-dark-blue);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-light:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Decorative Elements */
.cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.cta-decoration span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-decoration span:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
}

.cta-decoration span:nth-child(2) {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 15%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-section::after {
        width: 150px;
        height: 150px;
        bottom: -30px;
        right: -30px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-section .btn-light {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .gc-hero h1 {
        font-size: 3.5rem;
    }
    
    .gc-hero p {
        font-size: 1.6rem;
    }
    
    .policy-item {
        flex-direction: column;
    }
    
    .policy-item-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .gc-hero h1 {
        font-size: 3rem;
    }
    
    .gc-hero p {
        font-size: 1.4rem;
    }
    
    .project-image {
        height: 200px;
    }
}

@media screen and (max-width: 576px) {
    .gc-hero h1 {
        font-size: 2.5rem;
    }
    
    .gc-hero p {
        font-size: 1.2rem;
    }
    
    .gc-service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .why-us-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}