/* Complete design overhaul with split-screen layout and bold typography */
         :root {
        --primary-dark: #0f172a;
        --accent-orange: #fc1817;
        --neutral-cream: #fef7ed;
        --neutral-white: #ffffff;
        --text-light: #64748b;
        --border-subtle: #e2e8f0;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
       body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        color: var(--primary-dark);
        overflow-x: hidden;
      }

      h1, h2, h3, h4, h5, h6 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        line-height: 1.2;
      }

        /* Split Screen Hero */
      .hero-split {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        background: var(--primary-dark);
      }

      .hero-left {
        /* display: flex; */
        align-items: center;
        padding: 0 5%;
        color: white;
      }

      .hero-right {
        background: var(--neutral-cream);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        height: 100%;
      }

      .hero-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }

      .hero-content {
        max-width: 600px;
      }

      .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 700;
        margin-bottom: 2rem;
        line-height: 1;
      }

      .hero-subtitle {
        font-size: 1.25rem;
        color: #94a3b8;
        margin-bottom: 3rem;
        font-weight: 300;
      }

      .btn-hero {
        background: var(--accent-orange);
        color: white;
        border: none;
        padding: 18px 40px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
      }

      .btn-hero:hover {
        background: #990f0f;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
      }
        /* Floating Navigation */
      .navbar-floating {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 50px;
        padding: 10px 20px;
        z-index: 1000;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      }

      .navbar-floating .navbar-nav .nav-link {
        color: var(--primary-dark);
        font-weight: 500;
        margin: 0 15px;
        transition: color 0.3s ease;
      }

      .navbar-floating .navbar-nav .nav-link:hover {
        color: var(--accent-orange);
      }

      .nav-logo img {
        width: 100px;
        height: auto;
      }

      /* responsive hero and navigation  */
      @media (max-width: 991px) {
        .navbar-floating {
          width: 90%;
          padding: 10px;
        }

        .navbar-nav {
          text-align: center;
        }

        .hero-left,
        .hero-right {
          min-height: 50vh;
          padding: 10%;
        }

        .hero-right img {
          height: auto;
        }
      }

      @media (max-width: 576px) {
        .hero-title {
          font-size: clamp(2rem, 5vw, 3rem);
        }

        .hero-subtitle {
          font-size: 1rem;
        }

        .btn-hero {
          padding: 12px 30px;
          font-size: 1rem;
        }
      }


        /* Diagonal Sections */
        .diagonal-section {
            position: relative;
            padding: 80px 0;
            overflow: hidden;
        }

        .diagonal-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: inherit;
            transform: skewY(-2deg);
            transform-origin: top left;
        }

        .section-bg-dark {
            background: var(--primary-dark);
            color: white;
        }

        .section-bg-light {
            background: var(--neutral-cream);
        }


       /* Work Section with Masonry */
        
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 2rem;
            background: white;
            border-radius: 20px;
            height: 100%;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .masonry-item:hover {
            transform: translateY(-10px);
        }

        .masonry-item-img{
            width: 100%;
            height: auto;
        }
        .masonry-item-img img{
            width: 100%;
            height: auto;
        }

        .masonry-content {
            padding: 2.5rem;
        }
        .masonry-content h5{
            color: var(--primary-dark);
        }
        

        /* Large Typography Sections */
        .big-text {
            font-size: 8rem;
            font-weight: 700;
            line-height: 0.8;
            color: var(--accent-orange);
            opacity: 0.1;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .content-overlay {
            position: relative;
            z-index: 2;
        }

        /* Circular Elements */
        .circle-element {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: var(--accent-orange);
            position: absolute;
            opacity: 0.1;
        }

        .circle-1 { top: 10%; left: 5%; }
        .circle-2 { bottom: 25%; left: 30%; width: 150px; height: 150px; }

        /* Stats Counter */
        .stats-counter {
            font-size: 4rem;
            font-weight: 700;
            color: var(--accent-orange);
            font-family: 'Playfair Display', serif;
        }

        /* Process Timeline */
        .timeline {
            position: relative;
            padding: 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent-orange);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin: 4rem 0;
        }
        .circle-3 { 
            top: 50%;
            left: 15%;
            transform: translateY(-50%);
            width: 150px;
            height: 150px;
        }
        .circle-4 { 
            top: 50%;
            right: 15%;
            transform: translateY(-50%);
            width: 150px;
            height: 150px;
        }

        @media(max-width:768px){
            .circle-3, .circle-4 {
                display: none;
            }
        }

        .timeline-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            width: 45%;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }

        .timeline-number {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--accent-orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            z-index: 10;
        }

        /* Contact Form Redesign */
        .contact-container {
            background: var(--primary-dark);
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .text-red{
          color: #fc1817;
        }

        .contact-form-modern {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 0;
            padding: 3rem;
        }

        .form-control-modern {
            background: transparent;
            border: none;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 0;
            color: white;
            padding: 1rem 0;
            font-size: 1.1rem;
        }

        .form-control-modern:focus {
            background: transparent;
            border-color: var(--accent-orange);
            box-shadow: none;
            color: white;
        }

        .form-control-modern::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .select-bg option{
          color: #0f172a;
        }

        /* footer  */
        .footer{
          padding: 50px 0;
        }

        @media (max-width: 768px) {
            .hero-split {
                flex-direction: column;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .masonry-grid {
                columns: 1;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
            }
            
            .timeline-number {
                left: 30px;
            }
            
            .big-text {
                font-size: 4rem;
            }
        }