:root {
  --primary-color: #265e97;
  --secondary-color: #77bc62;
  --primary-light: #3a7ab9;
  --primary-dark: #1c4a7a;
  --secondary-light: #8fd177;
  --secondary-dark: #5fa54d;
  --dark-color: #333333;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --black: #000000;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.dahab-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../IMG/dahab_page-0001.jpg') ;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
}

/* Project Details */
.project-highlight-card, 
.project-description,
.feature-card,
.pricing-table {
    transition: var(--transition);
}

.project-highlight-card:hover, 
.project-description:hover,
.feature-card:hover,
.pricing-table:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.project-meta .meta-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.project-meta .meta-item:last-child {
    border-bottom: none;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 8px 0;
}

/* Card Styles */
.card {
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Background Icon */
.icon-bg {
    position: absolute;
    top: -15px;
    left: 30px;
    z-index: 0;
    color: rgba(38, 94, 151, 0.05);
    transition: all 0.5s ease;
    font-size: 120px;
}

.card:hover .icon-bg {
    transform: scale(1.1);
    color: rgba(38, 94, 151, 0.1);
}



/* Animations
.pulse-animation {
    animation: pulse 2s infinite ease-in-out;
}

.bullseye-animation {
    animation: bullseye 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); ; }
    70% { transform: scale(1.08); ; }
    100% { transform: scale(1); ; }
}

@keyframes bullseye {
    0% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(10deg); }
    100% { transform: scale(1); }
} */

/* Card Content */
.card-body {
    position: relative;
    z-index: 2;
}

.card-body h3 {
    font-weight: 700;
    color: var(--primary-dark);
}

.card-body p {
    position: relative;
    z-index: 2;
}

/* Features Section */
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bg-primary-light {
    background-color: rgba(233, 165, 35, 0.1);
}

/* Services Section */
.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}



/* Gallery Section */
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    transition: var(--transition);
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    box-shadow: var(--box-shadow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dahab-hero {
        min-height: 50vh;
        
    }
    
}