
:root {
    --primary-color: rgba(165, 40, 36, 0.9);
    --secondary-color: rgba(10, 9, 7, 0.85);
    --light-color: #f8f5f2;
    --dark-color: #212529;
    --primary-solid: #a52824;
    --secondary-solid: #0a0907;
    --primary-hover: #83221d;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--dark-color);
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-solid) !important;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-solid) !important;
}

.nav-link.active {
    color: var(--primary-solid) !important;
    font-weight: 700;
}

/* Hero Section */

/* Hero Section with Background Image */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #a52824 100%);
}

/* Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff8eaf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: 1;
}

/* Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(165, 40, 36, 0.8), rgba(10, 9, 7, 0.9));
    z-index: 2;
}

/* Animated Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
}

.hero-bg-elements::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(165, 40, 36, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.hero-bg-elements::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
    animation: rotate-reverse 25s linear infinite;
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    opacity: 0.1;
    z-index: 4;
}

.shape-1 {
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-solid), var(--accent-color));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    bottom: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-solid));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    top: 50%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #fff, var(--primary-solid));
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: float 7s ease-in-out infinite;
}

/* Film Reel Animation */
.film-reel {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 120px;
    height: 120px;
    opacity: 0.15;
    animation: rotate 20s linear infinite;
    z-index: 4;
}

.film-reel::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 15px solid var(--primary-solid);
    box-shadow: inset 0 0 0 5px var(--accent-color), inset 0 0 0 15px var(--primary-solid);
}

.film-reel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--primary-solid);
    border-radius: 50%;
}

/* Camera Icon Animation */
.camera-icon {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 100px;
    height: 80px;
    opacity: 0.15;
    z-index: 4;
}

.camera-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 60%;
    background: var(--primary-solid);
    border-radius: 10px;
    top: 20%;
}

.camera-icon::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 40%;
    background: var(--accent-color);
    border-radius: 50%;
    top: 10%;
    left: 30%;
}

/* Clapperboard Animation */
.clapperboard {
    position: absolute;
    top: 15%;
    right: 30%;
    width: 80px;
    height: 60px;
    opacity: 0.15;
    transform: rotate(-15deg);
    animation: swing 4s ease-in-out infinite;
    z-index: 4;
}

.clapperboard::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 70%;
    background: var(--primary-solid);
    top: 0;
}

.clapperboard::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    background: var(--accent-color);
    bottom: 0;
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 5;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s linear infinite;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 80%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 40%;
    animation-delay: 8s;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 600px;
    padding: 0 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Beautiful Buttons Styling */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.btn-hero {
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    z-index: 1;
}

.btn-hero i {
    margin-left: 12px;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    z-index: 2;
}

/* Button Text Styling */
.btn-hero span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Primary Button - شاهد أعمالنا */
.btn-primary-custom {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: var(--primary-solid);
    border-color: rgba(165, 40, 36, 0.2);
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-solid), var(--primary-hover));
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: right;
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn-primary-custom:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(165, 40, 36, 0.4);
    color: white;
    border-color: var(--primary-solid);
}

.btn-primary-custom:hover::before {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary-custom:hover::after {
    left: 100%;
}

.btn-primary-custom:hover i {
    transform: translateX(-5px) rotate(10deg);
}

/* Accent Button - اطلب استشارة */
.btn-accent-custom {
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    color: white;
    border-color: rgba(230, 126, 34, 0.3);
}

.btn-accent-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e67e22, #d35400);
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
}

.btn-accent-custom::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: top 0.5s ease;
    z-index: 1;
}

.btn-accent-custom:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(230, 126, 34, 0.5);
}

.btn-accent-custom:hover::before {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
}

.btn-accent-custom:hover::after {
    top: 100%;
}

.btn-accent-custom:hover i {
    transform: translateX(-5px) rotate(-10deg);
}


/*  end hero  */





/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-solid);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-solid);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 50px;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-solid);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* How We Work Section - Updated */
.strategy-section {
    background: linear-gradient(135deg, #fff, var(--light-color));
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.strategy-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.strategy-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-solid);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.strategy-icon {
    width: 80px;
    height: 80px;
    background: rgba(165, 40, 36, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
    flex-shrink: 0;
}

.strategy-icon i {
    font-size: 2.5rem;
    color: var(--primary-solid);
}

.strategy-content {
    flex-grow: 1;
}

.strategy-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-solid);
}

.strategy-description {
    color: #6c757d;
    margin-bottom: 0;
}

.strategy-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(165, 40, 36, 0.05), transparent);
    border-radius: 0 0 15px 0;
}

/* Clients Section - New */
.clients-section {
    background: linear-gradient(135deg, var(--primary-solid), var(--primary-hover));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.clients-content {
    position: relative;
    z-index: 2;
}

.clients-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.clients-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 4px;
    background-color: white;
}

.clients-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.client-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.client-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.client-logo i {
    font-size: 3rem;
    color: white;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-type {
    font-size: 0.9rem;
    opacity: 0.8;
}

.special-logo {
    position: relative;
}

.special-logo::after {
    content: '✈️';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 1.2rem;
}


        /* Client Stats Section - New */
        .stats-section {
          background-color: var(--light-color);
          padding: 60px 0;
          position: relative;
      }

      .stats-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 5px;
          background: linear-gradient(90deg, var(--primary-solid), var(--primary-hover));
      }

      .stat-item {
          text-align: center;
          padding: 20px;
          transition: all 0.3s ease;
      }

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

      .stat-icon {
          font-size: 2.5rem;
          color: var(--primary-solid);
          margin-bottom: 15px;
      }

      .stat-number {
          font-size: 2.5rem;
          font-weight: 700;
          color: var(--secondary-solid);
          margin-bottom: 10px;
      }

      .stat-title {
          font-size: 1.1rem;
          color: #6c757d;
      }



/* Testimonials Section - New */
.testimonials-section {
  padding: 80px 0;
  background: white;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary-solid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 15px;
  border: 3px solid var(--light-color);
}

.author-info h5 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: var(--secondary-solid);
}

.author-info p {
  margin-bottom: 0;
  color: #6c757d;
  font-size: 0.9rem;
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 15px;
}


/*  detels       */





/* Order Hero Section */
.project-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-solid), var(--primary-hover));
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.project-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    z-index: 2;
    padding: 20px;
    color: #f9f9f9;
}

.project-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-badge i {
    margin-left: 8px;
}

.project-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-category {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-solid) !important;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-solid) !important;
}

.nav-link.active {
    color: var(--primary-solid) !important;
    font-weight: 700;
}

/* Back Button */
.back-btn {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
}

.back-btn:hover {
    color: var(--accent-color);
    transform: translateX(-5px);
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

/* Info Card */
.info-card {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.info-content {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Detail Items */
.detail-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    color: var(--white-color);
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(165, 40, 36, 0.2);
}

.detail-content {
    flex-grow: 1;
}

.detail-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.detail-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
}

/* Gallery */
.gallery-section {
    margin: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(165, 40, 36, 0.8),
        rgba(10, 9, 7, 0.9)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-icon {
    color: var(--white-color);
    font-size: 3rem;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #8a1f1c);
    color: var(--white-color);
    padding: 80px 0;
    border-radius: 30px;
    margin: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(165, 40, 36, 0.3);
        color: #f9f9f9;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;

}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    color: var(--white-color);
    border: none;
    padding: 18px 50px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    box-shadow: 0 15px 40px rgba(221, 128, 47, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(221, 128, 47, 0.5);
    color: var(--white-color);
}

/* Share Section */
.share-section {
    text-align: center;
    padding: 60px 0;
    background-color: var(--light-color);
    border-radius: 30px;
    margin-bottom: 80px;
}

.share-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.share-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: all 0.4s ease;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #3b5998, #4c70ba);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.share-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    padding: 25px 30px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: none;
    padding: 20px 30px 30px;
    justify-content: center;
    gap: 15px;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-in-progress {
    background-color: #cfe2ff;
    color: #084298;
}

.status-completed {
    background-color: #d1e7dd;
    color: #0f5132;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #842029;
}

/* Timeline */
.timeline {
    position: relative;
    padding-right: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    padding-right: 30px;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 5px;
    right: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--white-color);
    box-shadow: 0 0 0 3px rgba(165, 40, 36, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .project-details {
        padding: 30px 20px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .btn-cta {
        padding: 15px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
    }

    .detail-icon {
        margin-left: 0;
        margin-bottom: 15px;
    }

    .share-buttons {
        gap: 15px;
    }

    .share-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .project-title {
        font-size: 2rem;
    }

    .timeline {
        padding-right: 15px;
    }

    .timeline-item {
        padding-right: 25px;
    }

    .timeline-item::before {
        right: -6px;
        width: 12px;
        height: 12px;
    }
}


/* Portfolio */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(165, 40, 36, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-info {
    color: white;
    text-align: center;
    padding: 20px;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-info {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}

.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-solid);
    margin-left: 15px;
    width: 40px;
    text-align: center;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-solid);
    border-color: var(--primary-solid);
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(165, 40, 36, 0.3);
    color: white;
}

.btn-outline-primary {
    color: var(--primary-solid);
    border-color: var(--primary-solid);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-solid);
    border-color: var(--primary-solid);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(165, 40, 36, 0.3);
}



/* WhatsApp Widget Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  direction: ltr;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.whatsapp-link:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
  color: white;
  font-size: 30px;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 70px;
  right: -10px;
  background-color: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  right: 20px;
  border: 8px solid transparent;
  border-top-color: #333;
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Animation for WhatsApp widget */
@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-link {
  animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-widget {
      bottom: 20px;
      left: 20px;
  }

  .whatsapp-link {
      width: 50px;
      height: 50px;
  }

  .whatsapp-icon {
      font-size: 24px;
  }

  .whatsapp-tooltip {
      font-size: 12px;
      padding: 6px 10px;
      bottom: 60px;
  }
}


/* end WhatsApp Widget Styles */





/* Footer - Improved */
footer {
    background: linear-gradient(135deg, var(--secondary-solid), #1a1815);
    color: white;
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-solid), var(--primary-hover));
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
}

.footer-logo i {
    color: var(--primary-solid);
    margin-left: 10px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-left: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    color: white;
    background-color: var(--primary-solid);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(165, 40, 36, 0.3);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-solid);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-right: 5px;
}

.footer-links a:hover::after {
    width: 100%;
}

.newsletter-form {
    position: relative;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding-right: 45px;
    border-radius: 50px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-solid);
    box-shadow: 0 0 0 0.25rem rgba(165, 40, 36, 0.25);
    color: white;
}

.newsletter-form .btn {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-solid);
    border-color: var(--primary-solid);
    border-radius: 50px;
    padding: 6px 15px;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-50%) scale(1.05);
}

/* Latest Projects in Footer */
.footer-projects {
    margin-top: 20px;
}

.footer-project-item {
    display: flex;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px;
}

.footer-project-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.footer-project-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    margin-left: 12px;
    flex-shrink: 0;
}

.footer-project-content {
    flex-grow: 1;
}

.footer-project-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
    transition: color 0.3s ease;
}

.footer-project-item:hover .footer-project-title {
    color: var(--primary-solid);
}

.footer-project-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-projects-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    display: flex;
    align-items: center;
}

.footer-projects-title i {
    color: var(--primary-solid);
    margin-left: 8px;
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .clients-title {
        font-size: 2rem;
    }

    .portfolio-img {
        height: 200px;
    }

    .strategy-item {
        flex-direction: column;
        text-align: center;
    }

    .strategy-icon {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .strategy-number {
        top: 10px;
        left: 10px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1rem;
        margin-left: 10px;
    }

    .footer-project-img {
        width: 50px;
        height: 50px;
    }
}
