/* =========================================
   Enhanced Design CSS for Alfadhaa Website
   ========================================= */

/* ==================
   Global Variables
   ================== */
   :root {
    /* Colors */
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-muted: #666;
    --bg-light: #f8f9fa;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3498db, #2c3e50);
    --gradient-secondary: linear-gradient(135deg, #e74c3c, #c0392b);

    /* Effects */
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.2);
    --box-shadow-button: 0 5px 15px rgba(52, 152, 219, 0.3);
    --box-shadow-button-hover: 0 8px 20px rgba(52, 152, 219, 0.4);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
  }

  /* =================
     Hero Section
     ================= */
  .hero-carousel {
    position: relative;
    overflow: hidden;
  }

  .hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
  }

  .hero-carousel .carousel-item {
    height: 100vh;
    transition: transform 1.2s ease-in-out;
    position: relative;
  }

  .hero-carousel .carousel-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
  }

  .hero-carousel .carousel-item img {
    filter: brightness(0.7) contrast(1.1);
    transition: all 1s ease;
    transform: scale(1);
  }

  .carousel-item.active img {
    animation: subtle-zoom 10s ease-in-out forwards;
  }

  @keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
  }

  .hero-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    z-index: 2;
  }

  .hero-carousel h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 1;
    padding-top: 50px;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    color: white;
    position: relative;
  }


  .hero-carousel h4 {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.8s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: white;
  }

  .hero-scroll-icon {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s forwards, bounce 2s infinite;
    animation-delay: 1.2s;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  /* Media query for large screens */
  @media (min-width: 992px) {
    .hero-carousel h1,
    .hero-carousel h4,
    .hero-scroll-icon {
      opacity: 1;
    }
  }

  .hero-scroll-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) scale(1.1);
  }

  .hero-scroll-icon svg {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
  }

  /* Carousel Controls */
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    margin: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  .hero-carousel .carousel-control-prev:hover,
  .hero-carousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
  }

  .hero-carousel .carousel-control-prev-icon,
  .hero-carousel .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
  }

  /* =================
     Section Headers
     ================= */
  .section-header {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
  }

  .section-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
  }

  .section-header h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
  }

  .section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 1rem auto 0;
  }

  /* =================
     Service Cards
     ================= */
  .service-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    background: white;
    height: 100%;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }

  .service-card .card-body {
    padding: 2rem;
  }

  .service-card .icon-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-color);
    transition: var(--transition);
  }

  .service-card:hover .icon-container {
    background: var(--gradient-primary);
    transform: scale(1.1);
  }

  .service-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: var(--transition);
  }

  .service-card:hover .card-title {
    color: var(--secondary-color);
  }

  .service-card .card-text {
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* Our Services Section */
  .our-services {
    position: relative;
    padding: 5rem 0;
    background-color: #2D3748;
    color: white;
    overflow: hidden;
  }

  /* Services Background Elements */
  .services-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }

  .services-bg-element:nth-child(1) {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(52, 152, 219, 0.05) 70%, transparent 100%);
    filter: blur(40px);
  }

  .services-bg-element:nth-child(2) {
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(60, 126, 231, 0.15) 0%, rgba(53, 208, 239, 0.05) 70%, transparent 100%);
    filter: blur(35px);
  }

  .our-services .section-header h1 {
    color: white;
  }

  .our-services .section-header h1:after {
    background: linear-gradient(135deg, #3498db, #101e5e);
    width: 100px;
    height: 5px;
  }

  .our-services .section-header p {
    color: rgba(255, 255, 255, 0.8);
  }

  /* Service Cards in Dark Mode */
  .our-services .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
  }

  .our-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .our-services .icon-container {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .our-services .service-card:hover .icon-container {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.7), rgba(44, 62, 80, 0.7));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .our-services .card-title {
    color: white;
    position: relative;
    padding-bottom: 10px;
  }

  .our-services .card-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #3498db, #e74c3c);
    transition: width 0.3s ease;
  }

  .our-services .service-card:hover .card-title:after {
    width: 50px;
  }

  .our-services .card-text {
    color: rgba(255, 255, 255, 0.7);
  }

  /* Background Elements */
  .our-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.svg');
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .our-services {
      padding: 3rem 0;
    }

    .our-services .section-header h1 {
      font-size: 2.5rem;
    }

    .our-services .service-card {
      margin-bottom: 20px;
    }

    .our-services .icon-container {
      width: 100px;
      height: 100px;
    }
  }

  /* =================
     About Us Section
     ================= */
  .about-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--bg-light);
    overflow: hidden;
  }

  /* Background Pattern */
  .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
  }

  /* Circle Design Elements */
  .about-section .circle-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.1));
    z-index: 0;
  }

  .about-section .circle-2 {
    position: absolute;
    bottom: 50px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
    z-index: 0;
  }

  .about-section .circle-3 {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(46, 204, 113, 0.05));
    z-index: 0;
  }

  .about-section .circle-4 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(155, 89, 182, 0.05));
    z-index: 0;
  }

  /* Small Animated Circles */
  .about-section .small-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
  }

  .about-section .small-circle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.2);
    z-index: 0;
  }

  /* Contact Us Section */
  .contact-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(236, 240, 241, 0.8), rgba(248, 249, 250, 0.9));
    overflow: hidden;
  }

  /* Contact Background Elements */
  .contact-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }

  .contact-bg-element:nth-child(1) {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, rgba(52, 152, 219, 0.05) 70%, transparent 100%);
    filter: blur(30px);
  }

  .contact-bg-element:nth-child(2) {
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.03) 70%, transparent 100%);
    filter: blur(25px);
  }

  .social-buttons {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    z-index: 1;
  }

  .social-buttons:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
  }

  .social-icon {
    display: inline-block;
    background: white;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(52, 152, 219, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
  }

  .social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .social-icon:hover::before {
    width: 150%;
    height: 150%;
  }

  .social-buttons a h2 {
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .social-buttons a h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
  }

  .social-buttons a:hover h2 {
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .social-buttons a:hover h2::before {
    width: 100%;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .social-buttons {
      padding: 1.5rem;
    }

    .social-icon img {
      width: 60px;
      padding: 10px;
    }

    .social-buttons a h2 {
      font-size: 1.5rem;
      padding: 0.3rem 0.8rem;
    }
  }

  .about-section .circle-4 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(155, 89, 182, 0.05));
    z-index: 0;
  }

  /* Small Animated Circles */
  .about-section .small-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
  }

  .about-section .small-circle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.2);
    z-index: 0;
  }

  /* Small Circle Positions and Animations */
  .about-section .small-circle:nth-child(1) { top: 10%; left: 20%; animation: float 6s infinite ease-in-out; }
  .about-section .small-circle:nth-child(2) { top: 30%; left: 80%; animation: float 8s infinite ease-in-out; }
  .about-section .small-circle:nth-child(3) { top: 70%; left: 30%; animation: float 7s infinite ease-in-out; }
  .about-section .small-circle:nth-child(4) { top: 40%; left: 60%; animation: float 9s infinite ease-in-out; }
  .about-section .small-circle:nth-child(5) { top: 80%; left: 70%; animation: float 5s infinite ease-in-out; }
  .about-section .small-circle:nth-child(6) { top: 60%; left: 10%; animation: float 10s infinite ease-in-out; }
  .about-section .small-circle:nth-child(7) { top: 20%; left: 50%; animation: float 7s infinite ease-in-out; }
  .about-section .small-circle:nth-child(8) { top: 50%; left: 40%; animation: float 8s infinite ease-in-out; }

  /* Float Animation */
  @keyframes float {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
    100% { transform: translateY(0) scale(1); }
  }

  /* About Content */
  .about-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: var(--box-shadow);
  }

  .about-video {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  /* Our Staff Section */
  .staff-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 6rem 0;
    overflow: hidden; /* Added to contain floating elements */
  }

  .staff-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1; /* Added z-index */
  }

  /* Staff Floating Elements */
  .staff-floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 2;
    filter: blur(1px);
    animation: staffFloat 8s infinite ease-in-out;
  }

  .staff-floating-element:nth-child(1) {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    animation-delay: 0s;
  }

  .staff-floating-element:nth-child(2) {
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 70%);
    animation-delay: 1s;
  }

  .staff-floating-element:nth-child(3) {
    bottom: 15%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
    animation-delay: 2s;
  }

  .staff-floating-element:nth-child(4) {
    bottom: 20%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 70%);
    animation-delay: 3s;
  }

  /* Staff Particles */
  .staff-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 2;
    animation: staffParticleFloat 15s infinite linear;
  }

  .staff-particle:nth-child(1) { top: 20%; left: 30%; animation-duration: 20s; }
  .staff-particle:nth-child(2) { top: 40%; left: 70%; animation-duration: 25s; }
  .staff-particle:nth-child(3) { top: 70%; left: 20%; animation-duration: 18s; }
  .staff-particle:nth-child(4) { top: 30%; left: 80%; animation-duration: 22s; }
  .staff-particle:nth-child(5) { top: 80%; left: 40%; animation-duration: 19s; }
  .staff-particle:nth-child(6) { top: 60%; left: 60%; animation-duration: 21s; }
  .staff-particle:nth-child(7) { top: 50%; left: 10%; animation-duration: 23s; }
  .staff-particle:nth-child(8) { top: 10%; left: 50%; animation-duration: 24s; }

  /* Staff Content */
  .staff-content {
    position: relative;
    z-index: 3; /* Increased z-index to appear above particles */
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .staff-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .staff-content h3 {
    position: relative;
    padding-bottom: 15px;
  }

  .staff-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
    border-radius: 3px;
  }

  /* Staff Animations */
  @keyframes staffFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
  }

  @keyframes staffParticleFloat {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(100px, -100px); opacity: 0; }
  }

  /* Small Circle Positions and Animations */
  .about-section .small-circle:nth-child(1) { top: 10%; left: 20%; animation: float 6s infinite ease-in-out; }
  .about-section .small-circle:nth-child(2) { top: 30%; left: 80%; animation: float 8s infinite ease-in-out; }
  .about-section .small-circle:nth-child(3) { top: 70%; left: 30%; animation: float 7s infinite ease-in-out; }
  .about-section .small-circle:nth-child(4) { top: 40%; left: 60%; animation: float 9s infinite ease-in-out; }
  .about-section .small-circle:nth-child(5) { top: 80%; left: 70%; animation: float 5s infinite ease-in-out; }
  .about-section .small-circle:nth-child(6) { top: 60%; left: 10%; animation: float 10s infinite ease-in-out; }
  .about-section .small-circle:nth-child(7) { top: 20%; left: 50%; animation: float 7s infinite ease-in-out; }
  .about-section .small-circle:nth-child(8) { top: 50%; left: 40%; animation: float 8s infinite ease-in-out; }

  /* Float Animation */
  @keyframes float {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
    100% { transform: translateY(0) scale(1); }
  }

  /* About Content */
  .about-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: var(--box-shadow);
  }

  .about-video {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  /* Our Works Section */
  .works-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(236, 240, 241, 0.8), rgba(248, 249, 250, 0.9));
    overflow: hidden;
  }

  /* Works Background Elements */
  .works-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }

  .works-bg-element:nth-child(1) {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(52, 152, 219, 0.05) 70%, transparent 100%);
    filter: blur(30px);
  }

  .works-bg-element:nth-child(2) {
    bottom: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.15) 0%, rgba(231, 76, 60, 0.05) 70%, transparent 100%);
    filter: blur(25px);
  }

  .works-item {
    position: relative;
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
  }

  .works-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03), rgba(44, 62, 80, 0.03));
    z-index: -1;
    border-radius: 20px;
  }

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

  .works-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
  }

  .works-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(52, 152, 219, 0.1), rgba(44, 62, 80, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
  }

  .works-image:hover::before {
    opacity: 1;
  }

  .works-image img {
    transition: transform 0.5s ease;
  }

  .works-image:hover img {
    transform: scale(1.05);
  }

  .works-content {
    padding: 1.5rem 0;
  }

  .works-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 20px;
    transition: all 0.3s ease;
    color: var(--dark-color);
  }

  .works-content h4::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 80%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateY(-50%);
  }

  .works-item:hover .works-content h4::after {
    width: 6px;
  }

  .works-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .works-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transition: width 0.3s ease;
    z-index: -1;
  }

  .works-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    color: white !important;
  }

  .works-btn:hover::before {
    width: 100%;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .works-item {
      padding: 1.5rem;
    }

    .works-content {
      padding: 1rem 0;
    }

    .works-btn {
      padding: 0.7rem 1.8rem;
    }
  }
  /* Sections Carousel */
  .section-carousel-container {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(236, 240, 241, 0.8), rgba(248, 249, 250, 0.9));
    overflow: hidden;
  }

  /* Sections Background Elements */
  .sections-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }

  .sections-bg-element:nth-child(1) {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, rgba(52, 152, 219, 0.05) 70%, transparent 100%);
    filter: blur(30px);
  }

  .sections-bg-element:nth-child(2) {
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.03) 70%, transparent 100%);
    filter: blur(25px);
  }

  .section-carousel .item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    transform: translateY(0);
  }

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

  .section-carousel .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .section-carousel .image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.4s ease;
  }

  .section-carousel .item:hover .image-box::before {
    opacity: 0.9;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.4), rgba(52, 152, 219, 0.7));
  }

  .section-carousel .image-box img {
    transition: transform 0.6s ease;
    filter: brightness(0.8);
  }

  .section-carousel .item:hover .image-box img {
    transform: scale(1.1);
    filter: brightness(0.9);
  }

  .section-carousel h4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    width: 90%;
    transition: all 0.3s ease;
  }

  .section-carousel .item:hover h4 {
    transform: translate(-50%, -65%);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  }

  .section-carousel .movie_link {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
  }

  .section-carousel .movie_link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 30px;
  }

  .section-carousel .item:hover .movie_link {
    opacity: 1;
    bottom: 30px;
  }

  .section-carousel .movie_link:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  .section-carousel .movie_link:hover::before {
    width: 100%;
  }

  /* Owl Carousel Navigation */
  .section-carousel-container .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.7;
  }

  .section-carousel-container .owl-nav button:hover {
    background: white !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 1;
  }

  .section-carousel-container .owl-nav button.owl-prev {
    left: 20px;
  }

  .section-carousel-container .owl-nav button.owl-next {
    right: 20px;
  }

  .section-carousel-container .owl-nav button span {
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 0.5;
  }

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

    .section-carousel .movie_link {
      padding: 0.7rem 1.8rem;
    }
  }

  @media (max-width: 768px) {
    .section-carousel h4 {
      font-size: 1.8rem;
    }

    .section-carousel-container .owl-nav button {
      width: 40px;
      height: 40px;
    }
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .social-buttons {
      padding: 1.5rem;
    }

    .social-icon img {
      width: 40px;
      padding: 8px;
    }
  }

  .about-section .circle-4 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(155, 89, 182, 0.05));
    z-index: 0;
  }

  /* Small Animated Circles */
  .about-section .small-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
  }

  .about-section .small-circle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.2);
    z-index: 0;
  }

  /* Small Circle Positions and Animations */
  .about-section .small-circle:nth-child(1) { top: 10%; left: 20%; animation: float 6s infinite ease-in-out; }
  .about-section .small-circle:nth-child(2) { top: 30%; left: 80%; animation: float 8s infinite ease-in-out; }
  .about-section .small-circle:nth-child(3) { top: 70%; left: 30%; animation: float 7s infinite ease-in-out; }
  .about-section .small-circle:nth-child(4) { top: 40%; left: 60%; animation: float 9s infinite ease-in-out; }
  .about-section .small-circle:nth-child(5) { top: 80%; left: 70%; animation: float 5s infinite ease-in-out; }
  .about-section .small-circle:nth-child(6) { top: 60%; left: 10%; animation: float 10s infinite ease-in-out; }
  .about-section .small-circle:nth-child(7) { top: 20%; left: 50%; animation: float 7s infinite ease-in-out; }
  .about-section .small-circle:nth-child(8) { top: 50%; left: 40%; animation: float 8s infinite ease-in-out; }

  /* Float Animation */
  @keyframes float {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
    100% { transform: translateY(0) scale(1); }
  }

  /* About Content */
  .about-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: var(--box-shadow);
  }

  .about-video {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  /* Our Works Section */
  .works-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(236, 240, 241, 0.8), rgba(248, 249, 250, 0.9));
    overflow: hidden;
  }

  /* Works Background Elements */
  .works-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }

  .works-bg-element:nth-child(1) {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(52, 152, 219, 0.05) 70%, transparent 100%);
    filter: blur(30px);
  }

  .works-bg-element:nth-child(2) {
    bottom: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.15) 0%, rgba(231, 76, 60, 0.05) 70%, transparent 100%);
    filter: blur(25px);
  }

  .works-item {
    position: relative;
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
  }

  .works-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03), rgba(44, 62, 80, 0.03));
    z-index: -1;
    border-radius: 20px;
  }

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

  .works-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
  }

  .works-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(52, 152, 219, 0.1), rgba(44, 62, 80, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
  }

  .works-image:hover::before {
    opacity: 1;
  }

  .works-image img {
    transition: transform 0.5s ease;
  }

  .works-image:hover img {
    transform: scale(1.05);
  }

  .works-content {
    padding: 1.5rem 0;
  }

  .works-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 20px;
    transition: all 0.3s ease;
    color: var(--dark-color);
  }

  .works-content h4::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 80%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateY(-50%);
  }

  .works-item:hover .works-content h4::after {
    width: 6px;
  }

  .works-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .works-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transition: width 0.3s ease;
    z-index: -1;
  }

  .works-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    color: white !important;
  }

  .works-btn:hover::before {
    width: 100%;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .works-item {
      padding: 1.5rem;
    }

    .works-content {
      padding: 1rem 0;
    }

    .works-btn {
      padding: 0.7rem 1.8rem;
    }
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .social-buttons {
      padding: 1.5rem;
    }

    .social-icon img {
      width: 40px;
      padding: 8px;
    }
  }

  .about-section .circle-4 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(155, 89, 182, 0.05));
    z-index: 0;
  }

  /* Small Animated Circles */
  .about-section .small-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
  }

  .about-section .small-circle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.2);
    z-index: 0;
  }

  /* Small Circle Positions and Animations */
  .about-section .small-circle:nth-child(1) { top: 10%; left: 20%; animation: float 6s infinite ease-in-out; }
  .about-section .small-circle:nth-child(2) { top: 30%; left: 80%; animation: float 8s infinite ease-in-out; }
  .about-section .small-circle:nth-child(3) { top: 70%; left: 30%; animation: float 7s infinite ease-in-out; }
  .about-section .small-circle:nth-child(4) { top: 40%; left: 60%; animation: float 9s infinite ease-in-out; }
  .about-section .small-circle:nth-child(5) { top: 80%; left: 70%; animation: float 5s infinite ease-in-out; }
  .about-section .small-circle:nth-child(6) { top: 60%; left: 10%; animation: float 10s infinite ease-in-out; }
  .about-section .small-circle:nth-child(7) { top: 20%; left: 50%; animation: float 7s infinite ease-in-out; }
  .about-section .small-circle:nth-child(8) { top: 50%; left: 40%; animation: float 8s infinite ease-in-out; }

  /* Float Animation */
  @keyframes float {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
    100% { transform: translateY(0) scale(1); }
  }

  /* About Content */
  .about-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: var(--box-shadow);
  }

  .about-video {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  /* Our Works Section */
  .works-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(236, 240, 241, 0.8), rgba(248, 249, 250, 0.9));
    overflow: hidden;
  }

  /* Works Background Elements */
  .works-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }

  .works-bg-element:nth-child(1) {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(52, 152, 219, 0.05) 70%, transparent 100%);
    filter: blur(30px);
  }

  .works-bg-element:nth-child(2) {
    bottom: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.15) 0%, rgba(231, 76, 60, 0.05) 70%, transparent 100%);
    filter: blur(25px);
  }

  .works-item {
    position: relative;
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
  }

  .works-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03), rgba(44, 62, 80, 0.03));
    z-index: -1;
    border-radius: 20px;
  }

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

  .works-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
  }

  .works-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(52, 152, 219, 0.1), rgba(44, 62, 80, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
  }

  .works-image:hover::before {
    opacity: 1;
  }

  .works-image img {
    transition: transform 0.5s ease;
  }

  .works-image:hover img {
    transform: scale(1.05);
  }

  .works-content {
    padding: 1.5rem 0;
  }

  .works-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 20px;
    transition: all 0.3s ease;
    color: var(--dark-color);
  }

  .works-content h4::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 80%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateY(-50%);
  }

  .works-item:hover .works-content h4::after {
    width: 6px;
  }

  .works-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .works-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transition: width 0.3s ease;
    z-index: -1;
  }

  .works-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    color: white !important;
  }

  .works-btn:hover::before {
    width: 100%;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .works-item {
      padding: 1.5rem;
    }

    .works-content {
      padding: 1rem 0;
    }

    .works-btn {
      padding: 0.7rem 1.8rem;
    }
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .social-buttons {
      padding: 1.5rem;
    }

    .social-icon img {
      width: 40px;
      padding: 8px;
    }
  }

  .about-section .circle-4 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(155, 89, 182, 0.05));
    z-index: 0;
  }

  /* Small Animated Circles */
  .about-section .small-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
  }

  .about-section .small-circle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.2);
    z-index: 0;
  }

  /* Small Circle Positions and Animations */
  .about-section .small-circle:nth-child(1) { top: 10%; left: 20%; animation: float 6s infinite ease-in-out; }
  .about-section .small-circle:nth-child(2) { top: 30%; left: 80%; animation: float 8s infinite ease-in-out; }
  .about-section .small-circle:nth-child(3) { top: 70%; left: 30%; animation: float 7s infinite ease-in-out; }
  .about-section .small-circle:nth-child(4) { top: 40%; left: 60%; animation: float 9s infinite ease-in-out; }
  .about-section .small-circle:nth-child(5) { top: 80%; left: 70%; animation: float 5s infinite ease-in-out; }
  .about-section .small-circle:nth-child(6) { top: 60%; left: 10%; animation: float 10s infinite ease-in-out; }
  .about-section .small-circle:nth-child(7) { top: 20%; left: 50%; animation: float 7s infinite ease-in-out; }
  .about-section .small-circle:nth-child(8) { top: 50%; left: 40%; animation: float 8s infinite ease-in-out; }

  /* Float Animation */
  @keyframes float {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
    100% { transform: translateY(0) scale(1); }
  }

  /* About Content */
  .about-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: var(--box-shadow);
  }

  .about-video {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  /* Our Works Section */
  .works-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(236, 240, 241, 0.8), rgba(248, 249, 250, 0.9));
    overflow: hidden;
  }

  /* Works Background Elements */
  .works-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }

  .works-bg-element:nth-child(1) {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(52, 152, 219, 0.05) 70%, transparent 100%);
    filter: blur(30px);
  }

  .works-bg-element:nth-child(2) {
    bottom: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.15) 0%, rgba(231, 76, 60, 0.05) 70%, transparent 100%);
    filter: blur(25px);
  }

  .works-item {
    position: relative;
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
  }

  .works-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03), rgba(44, 62, 80, 0.03));
    z-index: -1;
    border-radius: 20px;
  }

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

  .works-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
  }

  .works-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(52, 152, 219, 0.1), rgba(44, 62, 80, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
  }

  .works-image:hover::before {
    opacity: 1;
  }

  .works-image img {
    transition: transform 0.5s ease;
  }

  .works-image:hover img {
    transform: scale(1.05);
  }

  .works-content {
    padding: 1.5rem 0;
  }

  .works-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 20px;
    transition: all 0.3s ease;
    color: var(--dark-color);
  }

  .works-content h4::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 80%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateY(-50%);
  }

  .works-item:hover .works-content h4::after {
    width: 6px;
  }

  .works-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .works-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transition: width 0.3s ease;
    z-index: -1;
  }

  .works-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    color: white !important;
  }

  .works-btn:hover::before {
    width: 100%;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .works-item {
      padding: 1.5rem;
    }

    .works-content {
      padding: 1rem 0;
    }

    .works-btn {
      padding: 0.7rem 1.8rem;
    }
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .social-buttons {
      padding: 1.5rem;
    }

    .social-icon img {
      width: 40px;
      padding: 8px;
    }
  }

  .about-section .circle-4 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(155, 89, 182, 0.05));
    z-index: 0;
  }

  /* Small Animated Circles */
  .about-section .small-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
  }

  .about-section .small-circle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.2);
    z-index: 0;
  }

  /* Small Circle Positions and Animations */
  .about-section .small-circle:nth-child(1) { top: 10%; left: 20%; animation: float 6s infinite ease-in-out; }
  .about-section .small-circle:nth-child(2) { top: 30%; left: 80%; animation: float 8s infinite ease-in-out; }
  .about-section .small-circle:nth-child(3) { top: 70%; left: 30%; animation: float 7s infinite ease-in-out; }
  .about-section .small-circle:nth-child(4) { top: 40%; left: 60%; animation: float 9s infinite ease-in-out; }
  .about-section .small-circle:nth-child(5) { top: 80%; left: 70%; animation: float 5s infinite ease-in-out; }
  .about-section .small-circle:nth-child(6) { top: 60%; left: 10%; animation: float 10s infinite ease-in-out; }
  .about-section .small-circle:nth-child(7) { top: 20%; left: 50%; animation: float 7s infinite ease-in-out; }
  .about-section .small-circle:nth-child(8) { top: 50%; left: 40%; animation: float 8s infinite ease-in-out; }

  /* Float Animation */
  @keyframes float {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
    100% { transform: translateY(0) scale(1); }
  }

  /* About Content */
  .about-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: var(--box-shadow);
  }

  .about-video {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  /* Our Works Section */
  .works-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(236, 240, 241, 0.8), rgba(248, 249, 250, 0.9));
    overflow: hidden;
  }

  /* Works Background Elements */
  .works-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }

  .works-bg-element:nth-child(1) {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(52, 152, 219, 0.05) 70%, transparent 100%);
    filter: blur(30px);
  }

  .works-bg-element:nth-child(2) {
    bottom: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.15) 0%, rgba(231, 76, 60, 0.05) 70%, transparent 100%);
    filter: blur(25px);
  }

  .works-item {
    position: relative;
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
  }

  .works-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03), rgba(44, 62, 80, 0.03));
    z-index: -1;
    border-radius: 20px;
  }

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

  .works-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
  }

  .works-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(52, 152, 219, 0.1), rgba(44, 62, 80, 0.2));
    opacity: 0;
    transition: all 0.4s ease;
  }
