/*---------------------------------------
  GENERAL STYLES
-----------------------------------------*/
:root {
    /* Primary Colors */
    --primary-color: #00C2C9;
    --primary-dark: #00ADB5;
    --primary-light: #67E8ED;
    
    /* Secondary Colors */
    --secondary-color: #F4A261;
    --secondary-dark: #E08F53;
    --secondary-light: #F7BB84;
    
    /* Neutral Colors */
    --dark-color: #1B1F3B;
    --dark-medium: #2A2F57;
    --gray-color: #545B7A;
    --light-gray: #A7ADBF;
    --white-color: #FFFFFF;
    
    /* Saudi-inspired accent colors */
    --saudi-green: #00C2C9;
    --saudi-gold: #F4A261;
    
    /* Font Families */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
}

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

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-medium);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

section {
    padding: var(--section-padding);
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-light {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--light-gray);
    color: var(--primary-dark);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.text-center .section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/*---------------------------------------
  PRELOADER
-----------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-gray);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 2rem;
    color: var(--dark-color);
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.navbar-brand:hover .brand-text {
    color: var(--primary-color);
    transform: scale(1.05);
}

.navbar-brand span {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-left: 10px;
}

.brand-text-footer {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--white-color);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-brand-tagline {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-medium);
    padding: 8px 16px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-light .navbar-toggler {
    border: none;
}

.navbar-light .navbar-toggler:focus {
    box-shadow: none;
}

/*---------------------------------------
  HERO SECTION
-----------------------------------------*/
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.hero-image-container {
    position: relative;
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

.hero-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('../svg/saudi-pattern.svg');
    background-repeat: repeat-x;
    background-position: bottom;
    opacity: 0.2;
}

/*---------------------------------------
  SERVICES OVERVIEW
-----------------------------------------*/
.services-overview {
    background-color: var(--white-color);
}

.service-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.15) rotate(10deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/*---------------------------------------
  ABOUT PREVIEW
-----------------------------------------*/
.about-preview {
    background-color: #f0f3f8;
}

.about-image-container {
    position: relative;
    height: 400px;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../svg/saudi-pattern.svg');
    background-repeat: repeat;
    opacity: 0.1;
    border-radius: 10px;
}

.about-image {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-color: var(--dark-color);
    border-radius: 10px;
    opacity: 0.9;
}

.about-text {
    color: var(--dark-medium);
    font-size: 1.1rem;
}

.about-cta {
    margin-top: 2rem;
}

/*---------------------------------------
  PORTFOLIO PREVIEW
-----------------------------------------*/
.portfolio-preview {
    background-color: var(--white-color);
}

.portfolio-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.portfolio-image {
    height: 300px;
    background-color: var(--dark-medium);
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.portfolio-image-1 {
    background-color: #00C2C9;
}

.portfolio-image-2 {
    background-color: #F4A261;
}

.portfolio-image-3 {
    background-color: #1B1F3B;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 31, 59, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: var(--white-color);
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/*---------------------------------------
  CTA SECTION
-----------------------------------------*/
.cta-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../svg/saudi-pattern.svg');
    background-repeat: repeat;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white-color);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/*---------------------------------------
  PAGE HEADER
-----------------------------------------*/
.page-header {
    padding: 150px 0 80px;
    background-color: #f0f3f8;
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../svg/saudi-pattern.svg');
    background-repeat: repeat;
    opacity: 0.05;
}

.page-header h1 {
    margin-bottom: 15px;
    position: relative;
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--gray-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-color);
}

/*---------------------------------------
  ABOUT PAGE STYLES
-----------------------------------------*/
.our-story {
    background-color: var(--white-color);
}

.story-image-container {
    position: relative;
    height: 400px;
}

.mission-vision {
    background-color: #f0f3f8;
}

.mission-card,
.vision-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mission-icon i,
.vision-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.our-values {
    background-color: var(--white-color);
}

.value-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 194, 201, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotate(10deg);
    background-color: rgba(0, 194, 201, 0.2);
}

.value-icon i {
    font-size: 35px;
    color: var(--primary-color);
}

.team-section {
    background-color: #f0f3f8;
}

.team-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    height: 250px;
    background-color: var(--light-gray);
}

.team-image-1 { background-color: #00C2C9; }
.team-image-2 { background-color: #F4A261; }
.team-image-3 { background-color: #1B1F3B; }
.team-image-4 { background-color: #67E8ED; }

.team-info {
    padding: 20px;
    text-align: center;
}

.team-position {
    color: var(--gray-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 194, 201, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/*---------------------------------------
  SERVICES PAGE STYLES
-----------------------------------------*/
.services-intro {
    background-color: var(--white-color);
}

.service-section {
    padding: 100px 0;
}

.service-section:nth-child(odd) {
    background-color: var(--white-color);
}

.service-section:nth-child(even) {
    background-color: #f0f3f8;
}

.service-image-container {
    text-align: center;
}

.service-icon-large {
    max-width: 250px;
    height: auto;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.process-section {
    background-color: var(--white-color);
}

.process-step {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: 700;
}

/*---------------------------------------
  PORTFOLIO PAGE STYLES
-----------------------------------------*/
.portfolio-intro {
    background-color: var(--white-color);
}

.portfolio-filters {
    padding-top: 0;
    padding-bottom: 50px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid var(--light-gray);
    border-radius: 30px;
    color: var(--gray-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.portfolio-grid {
    padding-top: 0;
}

.portfolio-modal .modal-content {
    border-radius: 15px;
    border: none;
}

.portfolio-modal .modal-header {
    border-bottom: none;
    padding: 20px 30px;
}

.portfolio-modal .modal-body {
    padding: 0 30px 30px;
}

.modal-image {
    height: 300px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.modal-image-1 { background-color: #00C2C9; }
.modal-image-2 { background-color: #F4A261; }
.modal-image-3 { background-color: #1B1F3B; }

.portfolio-modal h3 {
    margin-top: 0;
}

.portfolio-modal h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-medium);
}

.portfolio-modal ul {
    padding-left: 20px;
}

.portfolio-modal ul li {
    margin-bottom: 5px;
}

/*---------------------------------------
  CONTACT PAGE STYLES
-----------------------------------------*/
.contact-section {
    background-color: var(--white-color);
}

.contact-info {
    padding: 40px;
    background-color: #f0f3f8;
    border-radius: 10px;
    height: 100%;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 194, 201, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.social-links h4 {
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 194, 201, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.contact-form-container {
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    height: 50px;
    border-radius: 10px;
    padding: 10px 20px;
    border: 1px solid var(--light-gray);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    height: auto;
}

.map-section {
    padding-top: 0;
}

.map-container {
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #E0E0E0;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay h3 {
    color: var(--white-color);
    margin-bottom: 10px;
}

.map-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/*---------------------------------------
  FOOTER
-----------------------------------------*/
.footer {
    background-color: var(--dark-color);
    padding: 80px 0 30px;
    color: var(--light-gray);
}

.footer h4 {
    color: var(--white-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer p {
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.footer .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

.footer .social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-pattern {
    margin: 20px 0;
    height: 30px;
    opacity: 0.2;
}

.copyright {
    margin-top: 20px;
    color: var(--light-gray);
    font-size: 14px;
}

/*---------------------------------------
  FOUNDERS PAGE STYLES
-----------------------------------------*/
.founders-intro {
    background-color: var(--white-color);
}

.founder-profiles {
    background-color: #f0f3f8;
    padding: 80px 0;
}

.founder-card {
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.founder-cards {
    margin-top: 30px;
}

.founder-image-container {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.founder-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../svg/saudi-pattern.svg');
    background-repeat: repeat;
    opacity: 0.1;
}

.founder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.founder-image-1 {
    background-color: #1B1F3B;
}

.founder-image-2 {
    background-color: #F4A261;
}

.founder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.founder-image-container:hover .founder-overlay {
    opacity: 1;
}

.founder-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.founder-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.founder-name {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.founder-position {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.founder-bio {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.founder-separator {
    color: var(--secondary-color);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.founder-quote {
    background-color: rgba(0, 194, 201, 0.1);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
}

.founder-quote p {
    font-style: italic;
    margin-bottom: 0;
    color: var(--dark-medium);
}

.founder-divider {
    margin: 40px 0;
    border-color: rgba(0, 0, 0, 0.1);
}

.leadership-philosophy {
    background-color: #f0f3f8;
}

.philosophy-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 194, 201, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.philosophy-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.philosophy-card:hover .philosophy-icon {
    background-color: var(--primary-color);
}

.philosophy-card:hover .philosophy-icon i {
    color: var(--white-color);
}

.vision-saudi {
    background-color: var(--white-color);
}

.vision-image-container {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.vision-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../svg/saudi-pattern.svg');
    background-repeat: repeat;
    opacity: 0.2;
}

.vision-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.saudi-vision-overlay {
    background-color: rgba(0, 194, 201, 0.1);
    padding: 30px 50px;
    border-radius: 10px;
    border: 2px solid rgba(0, 194, 201, 0.3);
}

.saudi-vision-overlay h3 {
    color: var(--white-color);
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.vision-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.vision-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/
@media (max-width: 1199.98px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background-color: var(--white-color);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
    
    .about-image-container,
    .story-image-container,
    .founder-image-container,
    .vision-image-container {
        height: 300px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero-section {
        padding: 130px 0 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .portfolio-item {
        margin-bottom: 20px;
    }
    
    .portfolio-image {
        height: 250px;
    }
    
    .service-cta,
    .about-cta {
        text-align: center;
    }
    
    .service-cta .btn,
    .about-cta .btn {
        display: block;
        width: 100%;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .cta-section {
        padding: 70px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 30px 20px;
    }
}

/* Animation for flash messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    max-width: 350px;
}

.alert {
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
