   /*HOme page css*/
     .img{
            border-radius: 8px;
         }
         .cover-background { 
            border-radius: 0px !important;
         }
         .card-style02 .card-date{
            border-radius: 8px 0px 8px 0px !important;
         }
         @media screen and (max-width: 991px) {
            .top-position1 {
               margin-top: -400px !important;
            }
             .cover-background3 {
                   height: 470px !important;
               }
               .bannertext {
               margin-bottom: 3rem !important;
            }
         }
         
         /* ==================================================
            SIMPLE POPUP BOX - Clean & Minimal
            Separate classes - no overlap with existing styles
            Auto appears after 5 seconds
         ================================================== */
         .simple-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 99999;
            display: none;
            justify-content: center;
            align-items: center;
         }
         
         .simple-popup-overlay.active {
            display: flex;
         }
         
         .simple-popup-box {
            background: #fff;
            width: 90%;
            max-width: 380px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            animation: popupFadeIn 0.2s ease;
         }
         
         @keyframes popupFadeIn {
            from {
               opacity: 0;
               transform: scale(0.95);
            }
            to {
               opacity: 1;
               transform: scale(1);
            }
         }
         
         .simple-popup-header {
            background: #7f021a;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
         }
         
         .simple-popup-header h3 {
            margin: 0;
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
         }
         
         .simple-popup-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            padding: 0;
            line-height: 1;
            opacity: 0.8;
         }
         
         .simple-popup-close:hover {
            opacity: 1;
         }
         
         .simple-popup-body {
            padding: 20px;
         }
         
         .simple-project-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a2e;
            margin: 0 0 8px 0;
         }
         
         .simple-project-location {
            color: #666;
            font-size: 0.85rem;
            margin-bottom: 15px;
            padding-bottom: 12px;
            border-bottom: 1px solid #eee;
         }
         
         .simple-info-row {
            display: flex;
            margin-bottom: 12px;
            font-size: 0.9rem;
         }
         
         .simple-info-label {
            width: 70px;
            font-weight: 600;
            color: #444;
         }
         
         .simple-info-value {
            color: #333;
            flex: 1;
         }
         
         .simple-rera {
            color: #7f021a;
            font-weight: 500;
         }
         
         .simple-timing {
            background: #fef5e8;
            padding: 10px;
            border-radius: 8px;
            margin: 12px 0 5px;
            text-align: center;
            font-size: 0.85rem;
         }
         
         .simple-timing strong {
            color: #050505;
         }
         
         .simple-popup-footer {
            padding: 15px 20px 20px;
            border-top: 1px solid #eee;
            display: flex;
            gap: 12px;
         }
         
         .simple-btn-primary {
            background: #7f021a;
            color: #fff;
            border: none;
            padding: 10px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            flex: 1;
            font-size: 0.9rem;
         }
         
         .simple-btn-primary:hover {
            background: #9e0320;
         }
         
         .simple-btn-secondary {
            background: #f0f0f0;
            color: #333;
            border: none;
            padding: 10px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            flex: 1;
            font-size: 0.9rem;
         }
         
         .simple-btn-secondary:hover {
            background: #e0e0e0;
         }
         
         .simple-dont-show {
            text-align: center;
            margin-top: 10px;
            font-size: 0.7rem;
         }
         
         .simple-dont-show a {
            color: #999;
            text-decoration: none;
         }
         
         .simple-dont-show a:hover {
            color: #7f021a;
            text-decoration: underline;
         }
   
   /* Career page specific styles - matching the theme colors */
        .career-hero {
            background: linear-gradient(135deg, #0b1a2e 0%, #1a2a3f 100%);
            padding: 80px 0 70px;
            position: relative;
            overflow: hidden;
        }
        .career-hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
        }
        .career-hero p {
            font-size: 1.1rem;
            color: #cfdde6;
            max-width: 600px;
        }
        .career-badge {
            display: inline-block;
            background: #7f021a;
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 5px 14px;
            border-radius: 40px;
            margin-bottom: 20px;
        }
        /* Job Cards */
        .job-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            border: 1px solid #f0eae4;
            height: 100%;
        }
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.08);
            border-color: #7f021a20;
        }
        .job-icon {
            width: 55px;
            height: 55px;
            background: #fef5f0;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .job-icon i {
            font-size: 28px;
            color: #7f021a;
        }
        .job-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a1a1a;
        }
        .job-location {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #f5f0eb;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 500;
            color: #7f021a;
            margin-bottom: 15px;
        }
        .job-location i {
            font-size: 0.7rem;
        }
        .job-description {
            color: #4a5562;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        .job-tag {
            background: #f8f4f0;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            color: #5a5a5a;
        }
        .btn-apply {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1.5px solid #7f021a;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            color: #7f021a;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .btn-apply:hover {
            background: #7f021a;
            color: white;
            gap: 12px;
        }
        /* Why Join Section */
        .why-join-card {
            text-align: center;
            padding: 30px 20px;
            background: #fff;
            border-radius: 20px;
            transition: all 0.3s;
            height: 100%;
            border: 1px solid #f0eae4;
        }
        .why-join-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }
        .why-icon {
            width: 70px;
            height: 70px;
            background: #fef5f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .why-icon i {
            font-size: 32px;
            color: #7f021a;
        }
        .why-join-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a1a1a;
        }
        .why-join-card p {
            font-size: 0.9rem;
            color: #6c6c6c;
            line-height: 1.6;
        }
        /* Application Form Section */
        .application-form {
            background: #fef9f5;
            border-radius: 28px;
            padding: 45px 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 8px;
            display: block;
            color: #1a1a1a;
        }
        .form-control {
            width: 100%;
            padding: 12px 18px;
            border: 1px solid #e5dbd2;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.3s;
            background: #fff;
        }
        .form-control:focus {
            outline: none;
            border-color: #7f021a;
            box-shadow: 0 0 0 3px rgba(127,2,26,0.1);
        }
        select.form-control {
            cursor: pointer;
        }
        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }
        .file-upload {
            border: 2px dashed #e5dbd2;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            background: #fff;
            cursor: pointer;
            transition: all 0.3s;
        }
        .file-upload:hover {
            border-color: #7f021a;
            background: #fffaf7;
        }
        .file-upload i {
            font-size: 32px;
            color: #7f021a;
            margin-bottom: 10px;
            display: block;
        }
        .file-upload small {
            color: #888;
            font-size: 0.75rem;
        }
        #fileName {
            font-size: 0.8rem;
            color: #7f021a;
            margin-top: 8px;
            display: block;
        }
        /* Culture Section */
        .culture-value {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid #f0eae4;
        }
        .culture-value i {
            font-size: 36px;
            color: #7f021a;
            margin-bottom: 15px;
        }
        .culture-value h5 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .contact-clean {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

            .contact-item {
                display: flex;
                align-items: flex-start;
                gap: 15px;
            }

            .contact-item i {
                font-size: 20px;
                color: #7f021a;
                margin-top: 6px;
            }

            .contact-item strong {
                display: block;
                font-size: 20px;
                font-weight: 700;
                color: #1a1a1a;
                margin-bottom: 4px;
            }

            .contact-item p {
                margin: 0;
                font-size: 14px;
                color: #555;
            }

            .contact-item a {
                color: inherit;
                text-decoration: none;
            }

            .contact-item a:hover {
                color: #7f021a;
            }
        /* Responsive */
        @media (max-width: 992px) {
            .career-hero h1 { font-size: 2.5rem; }
            .application-form { padding: 30px 25px; }
        }
        @media (max-width: 768px) {
            .career-hero { padding: 60px 0 50px; }
            .job-card { padding: 22px; }
        }
        /* Animation */
        .wow {
            visibility: hidden;
        }
        .section-title02 span {
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 0.85rem;
            text-transform: uppercase;
            color: #7f021a;
            background: rgba(127,2,26,0.08);
            padding: 5px 16px;
                border-radius: 0px 8px 8px 0px;
            display: inline-block;
        }
        .section-title01 h2 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
        }
        .text-primary {
            color: #7f021a !important;
        }
        .bg-light-custom {
            background: #fefcf9;
        }
        
        /*404 page css*/
        .error-section {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: #fefcf9;
             height: 100vh;

        }
        .error-box h1 {
            font-size: 120px;
            font-weight: 800;
            color: #7f021a;
        }
        .error-box h3 {
            font-size: 28px;
            margin-bottom: 15px;
        }
        .error-box p {
            color: #666;
            margin-bottom: 25px;
        }
  
       
        /*About page - our team section css*/
     
      .hover:hover {
         color: #7f021a !important;
      }
      .bg-light {
            padding: 60px 30px !important;
        }
        @media screen and (max-width: 991px) {
             .cover-background {
                height: 290px !important;
            }
            .bg-light {
                 padding: 40px 10px !important;
            }
            .cover-background3 {
                height: 470px !important;
            }
        }

        /* Team section custom styles - following existing theme */
        .team-card {
            transition: all 0.3s ease;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.1);
        }
        .team-img-wrapper {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            background: #f5f5f5;
        }
        .team-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .team-card:hover .team-img-wrapper img {
            transform: scale(1.05);
        }
        .team-social {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .team-card:hover .team-social {
            opacity: 1;
        }
        .team-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #fff;
            color: #7f021a;
            border-radius: 50%;
            margin: 0 5px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .team-social a:hover {
            background: #7f021a;
            color: #fff;
        }
        .team-info {
            padding: 25px 20px !important;
            text-align: center;
        }
        .team-info h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #1a1a1a;
        }
        .team-info .position {
            color: #7f021a;
            font-weight: 500;
            margin-bottom: 12px;
            display: inline-block;
            font-size: 0.9rem;
        }
        .team-info p {
            font-size: 0.9rem;
            color: #6c6c6c;
            margin-bottom: 0;
        }
        .section-title02 span {
            font-weight: 600;
            letter-spacing: 1px;
        }
        .team-grid {
            margin-top: 20px;
        }

        /* Logo overlay styles for about image */
        .about-image-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }
        .about-image-wrapper img {
            border-radius: 8px;
            width: 90%;
            display: block;
            margin: 0 auto;
        }
        .corner-logo {
            position: absolute;
            top: 0px;
            left: 5%;
            width: 80px;      
            border-radius: 12px;
            padding: 5px 0px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            z-index: 10;
            transition: transform 0.3s ease;
        }
        .corner-logo:hover {
            transform: scale(1.05);
        }
        .corner-logo img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        @media screen and (max-width: 768px) {
            .corner-logo {
                width: 60px;
                top: 10px;
                left: 5%;
                padding: 5px 8px;
            }
        }
        @media screen and (max-width: 576px) {
            .corner-logo {
                width: 50px;
                top: 8px;
                left: 8%;
                padding: 4px 6px;
            }
        }
    
         /* Blog specific styles matching the about page theme */
         .blog-banner img{
         height: 500px;
         object-fit: cover;
         width: 100%;
         border-radius: 20px;
         }
         .blog-content p {
         line-height: 1.8;
         color: #4a4a4a;
         margin-bottom: 1.5rem;
         font-size: 1rem;
         }
         .blog-content h2 {
         font-size: 23px;
         font-weight: 700;
         margin-top: 2rem;
         margin-bottom: 1rem;
         color: #1a1a1a;
         border-left: 4px solid #7f021a;
         padding-left: 10px;
         }
         .blog-content h3 {
         font-size: 1.5rem;
         font-weight: 600;
         margin-top: 1.8rem;
         margin-bottom: 0.8rem;
         color: #2c2c2c;
         }
         .blog-content h4 {
         font-size: 1.2rem;
         font-weight: 700;
         margin-top: 1.2rem;
         margin-bottom: 0.5rem;
         color: #7f021a;
         }
         .blog-content .highlight-text {
         background: #fef5f0;
         padding: 2px 8px;
         border-radius: 4px;
         font-weight: 500;
         color: #7f021a;
         }
         .blog-badge {
         display: inline-block;
         background: #7f021a;
         color: #fff;
         font-size: 0.75rem;
         padding: 4px 12px;
         border-radius: 30px;
         letter-spacing: 0.5px;
         margin-bottom: 1rem;
         }
         .blog-quote {
         background: #f8f4f0;
         border-left: 4px solid #7f021a;
         padding: 1.5rem 2rem;
         font-style: italic;
         font-size: 1.1rem;
         margin: 2rem 0;
         border-radius: 8px;
         color: #2c2c2c;
         font-weight: 500;
         }
         .blog-sidebar-card {
         background: #fff;
         border-radius: 12px;
         padding: 1.8rem;
         box-shadow: 0 5px 20px rgba(0,0,0,0.03);
         border: 1px solid #f0eae4;
         margin-bottom: 30px;
         }
         .blog-sidebar-card h4 {
         font-size: 1.3rem;
         font-weight: 700;
         margin-bottom: 1.2rem;
         position: relative;
         padding-bottom: 10px;
         }
         .blog-sidebar-card h4:after {
         content: '';
         position: absolute;
         bottom: 0;
         left: 0;
         width: 50px;
         height: 3px;
         background: #7f021a;
         }
         .recent-post-item {
         display: flex;
         gap: 15px;
         margin-bottom: 18px;
         align-items: center;
         }
         .recent-post-img {
         width: 70px;
         height: 70px;
         background: #f5f0eb;
         border-radius: 8px;
         object-fit: cover;
         flex-shrink: 0;
         }
         .recent-post-content {
         flex: 1;
         }
         .recent-post-title {
         font-weight: 600;
         font-size: 0.9rem;
         color: #1a1a1a;
         transition: color 0.3s;
         text-decoration: none;
         display: block;
         margin-bottom: 4px;
         }
         .recent-post-title:hover {
         color: #7f021a;
         }
         .recent-post-date {
         font-size: 0.75rem;
         color: #888;
         }
         .social-share a {
         display: inline-flex;
         align-items: center;
         justify-content: center;
         width: 38px;
         height: 38px;
         background: #f5f0eb;
         color: #7f021a;
         border-radius: 50%;
         margin-right: 8px;
         transition: all 0.3s;
         text-decoration: none;
         }
         .social-share a:hover {
         background: #7f021a;
         color: #fff;
         }
         .pillar-sidebar-item {
         display: flex;
         align-items: center;
         gap: 12px;
         margin-bottom: 12px;
         }
         .pillar-sidebar-item i {
         font-size: 1rem;
         color: #7f021a;
         width: 20px;
         }
         .pillar-sidebar-item span {
         color: #4a4a4a;
         font-size: 0.9rem;
         }
         /* Fix for header on scroll - prevent flipping */
         .main-wrapper {
         position: relative;
         z-index: 1;
         }
         header {
         position: relative;
         z-index: 1000;
         transition: none !important;
         }
         .navbar {
         transition: none !important;
         }
         @media screen and (max-width: 768px) {
         .blog-content h2 {
         font-size: 1.5rem;
         }
         .blog-quote {
         padding: 1rem 1.2rem;
         font-size: 1rem;
         }
         .recent-post-img {
         width: 55px;
         height: 55px;
         }
         }

        /* Blog Listing Styles */
        .blog-listing-section {
            padding: 80px 0;
            background: #f9f9f9;
        }
        .blog-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.1);
        }
        .blog-card-image {
            position: relative;
            overflow: hidden;
            height: 240px;
        }
        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .blog-card:hover .blog-card-image img {
            transform: scale(1.05);
        }
      .blog-card-date {
         position: absolute;
         top: 13px;
         left: 13px;
         background: #7f021a;
         color: #fff;
         padding: 5px 0px;
         border-radius: 8px;
         text-align: center;
         box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
         z-index: 2;
         min-width: 59px;
      }
        .blog-card-date .day {
            font-size: 18px;
            font-weight: 800;
            line-height: 1;
            display: block;
        }
        .blog-card-date .month {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .blog-card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0,0,0,0.7);
            color: #fff;
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            z-index: 2;
        }
        .blog-card-content {
            padding: 25px;
        }
        .blog-card-category {
            display: inline-block;
            font-size: 0.75rem;
            color: #7f021a;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }
        .blog-card-title {
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 12px;
        }
        .blog-card-title a {
            color: #1a1a1a;
            text-decoration: none;
            transition: color 0.3s;
        }
        .blog-card-title a:hover {
            color: #7f021a;
        }
        .blog-card-excerpt {
            color: #6c6c6c;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        .blog-card-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.8rem;
            color: #888;
        }
        .blog-card-meta i {
            color: #7f021a;
            margin-right: 5px;
        }
        .blog-card-link {
            color: #7f021a;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s;
        }
        .blog-card-link:hover {
            gap: 10px;
            color: #5a0112;
        }
        .pagination {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        .pagination a, .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: #fff;
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #e0e0e0;
        }
        .pagination a:hover, .pagination .active {
            background: #7f021a;
            color: #fff;
            border-color: #7f021a;
        }
        @media screen and (max-width: 768px) {
            .blog-listing-section {
                padding: 50px 0;
            }
            .blog-card-title {
                font-size: 1.1rem;
            }
            .blog-card-image {
                height: 200px;
            }
        }

        /*Aansh Imperial Project*/
          .portfolio-style-01 .portfolio-overlay:before{
         border-radius: 8px !important;
         }
         .box-shadow-style1 {
         border-radius: 8px 0px 0px 8px !important;
         }
         [data-overlay-dark]:before {
         border-radius: 0px 8px 8px 0px !important;
         }
         .gallery{
         padding: 0px 0 !important;
         }
         .place-details-compact-container {
         border-radius: 8px !important;
         }
         @media screen and (max-width: 991px) {
         .cover-background {
         height: 270px !important;
         }
         .card-style06 {
         margin-bottom: 15px;
         transition: all 0.3s ease;
         }
         .card-style06:hover {
         transform: translateY(-10px);
         filter: drop-shadow(0px 10px 35px rgba(2, 91, 86, 0.2));
         }
         .card-style06 .d-flex {
         padding: 15px !important;
         }
         section.ptb-6 {
         padding-bottom: 0px !important;
         padding-top: 30px !important;
         }
         section.ptb-6 .mt-n2-9 {
         margin-top: 0 !important;
         }
         section.ptb-6 .mt-2-9 {
         margin-top: 15px !important;
         }
         .gallery{
         padding: 0px 0 !important;
         }
         }
         /* Popup Background */
         .popup-form {
         display: flex !important;
         align-items: center;
         justify-content: center;
         position: fixed;
         z-index: 9999;
         left: 0;
         top: 0;
         width: 100%;
         height: 100%;
         background: rgba(0,0,0,0.7);
         opacity: 0;
         visibility: hidden;
         transition: 0.3s;
         }
         /* ACTIVE (OPEN) */
         .popup-form.active {
         opacity: 1;
         visibility: visible;
         }
         /* Popup Box */
         .popup-content {
         background: #fff;
         width: 90%;
         max-width: 420px;
         padding: 30px 25px;
         border-radius: 16px;
         position: relative;
         transform: translateY(-100px); /* start from top */
         transition: 0.4s ease;
         }
         /* OPEN → slide from TOP */
         .popup-form.active .popup-content {
         transform: translateY(80px);
         }
         /* CLOSE → slide to BOTTOM */
         .popup-form.closing .popup-content {
         transform: translateY(500px);
         }
         /* Heading */
         .hk-contact-head {
         text-align: center;
         margin-bottom: 25px;
         text-align: left;
         }
         .hk-contact-head h2 {
         font-size: 24px;
         margin-bottom: 5px;
         }
         .hk-contact-head p {
         font-size: 13px;
         color: #777;
         }
         /* Form */
         .hk-contact-form {
         display: flex;
         flex-direction: column;
         gap: 20px;
         }
         /* Floating Input */
         .hk-input-group {
         position: relative;
         }
         .hk-input-group input,
         .hk-input-group select {
         width: 100%;
         padding: 10px 12px;
         border: 2px solid #ddd; /* BORDER SAME */
         border-radius: 8px;
         font-size: 13px;
         background: transparent;
         outline: none;
         }
         /* Label */
         .hk-input-group label {
         position: absolute;
         top: 50%;
         left: 12px;
         color: #888;
         font-size: 13px;
         transform: translateY(-50%);
         background: #fff;
         padding: 0 6px;
         transition: 0.3s;
         pointer-events: none;
         }
         /* SELECT FIX */
         .hk-input-group select:valid + label {
         top: -7px;
         font-size: 11px;
         color: #7f021a;
         }
         /* Focus (ONLY COLOR CHANGE, BORDER SAME) */
         .hk-input-group input:focus,
         .hk-input-group select:focus {
         border-color: #7f021a; /* only color change */
         }
         /* Floating Effect */
         .hk-input-group input:focus + label,
         .hk-input-group input:valid + label {
         top: -7px;
         font-size: 11px;
         color: #7f021a;
         }
         /* Close */
         .close-popup {
         position: absolute;
         right: 15px;
         top: 10px;
         font-size: 22px;
         cursor: pointer;
         }
         .submit-btn:hover {
         background-color: #7f021a !important;
         }
         /* Animation */
         @keyframes fadeInUp {
         from {
         opacity: 0;
         transform: translateY(40px);
         }
         to {
         opacity: 1;
         transform: translateY(0);
         }
         }
         /* Mobile */
         @media (max-width: 767px) {
         .popup-content {
         margin: 20% auto;
         padding: 25px 18px;
         }
         }

        /*Project Page*/
          /* preserve original image card styles */
         img { border-radius: 8px 8px 0px 0px !important; }
         .portfolio-style-01 .portfolio-overlay:before { border-radius: 8px 8px 0px 0px !important; }
         .portfolio-style-01 .portfolio-content { border-radius: 0px 0px 8px 8px !important; }
         @media screen and (max-width: 991px) {
         .cover-background { height: 270px !important; }
         }
         
         .portfolio-style-01 {
         width: 100%;
         height: 100%;
         display: flex;
         flex-direction: column;
         background: #fff;
         border-radius: 12px;
         overflow: hidden;
         transition: all 0.3s ease;
         box-shadow: 0 10px 30px rgba(0,0,0,0.05);
         }
         .portfolio-style-01 .position-relative {
         flex: 1;
         display: flex;
         flex-direction: column;
         }
         .portfolio-style-01 img {
         width: 100%;
         /*height: 260px;*/
         object-fit: cover;
         }
         .portfolio-style-01 .portfolio-content {
         padding: 1.2rem;
         text-align: center;
         background: #fff;
         }
         /*@media (max-width: 768px) {*/
         /*.portfolio-style-01 img{ */
             /*height: 220px; }*/
         /*}*/
         
         /* UPCOMING COMPACT CARD - 4 in a row (col-md-3) */
         .upcoming-compact-card {
         background: #ffffff;
         border-radius: 18px;
         padding: 1.2rem 0.8rem;
         box-shadow: 0 5px 18px rgba(0,0,0,0.05);
         border: 1px solid #f0ede8;
         transition: all 0.2s ease;
         cursor: default;
         height: 100%;
         text-align: center;
         }
         .upcoming-compact-card:hover {
         transform: translateY(-3px);
         box-shadow: 0 12px 22px rgba(0,0,0,0.08);
         border-color: #e0d8cd;
         }
         .upcoming-compact-card .project-title {
         font-size: 1.3rem;
         font-weight: 700;
         color: #1e2a3e;
         margin-bottom: 0.4rem;
         letter-spacing: -0.2px;
         }
         .upcoming-compact-card .project-location {
         font-size: 0.85rem;
         color: #6c7a89;
         font-weight: 500;
         margin-bottom: 0.6rem;
         }
         .upcoming-compact-card .mini-divider {
         width: 35px;
         height: 2px;
         background: #7f021a;
         margin: 0.5rem auto;
         border-radius: 2px;
         }
         .upcoming-compact-card .project-year {
         font-size: 0.8rem;
         font-weight: 600;
         color: #ffffff;
         background: #7f021a;
         display: inline-block;
         padding: 0.2rem 0.9rem;
         border-radius: 8px;
         border: 1px solid #ffe0c4;
         }
         /* non-clickable */
         .upcoming-compact-card, .upcoming-compact-card * {
         pointer-events: none;
         user-select: text;
         }
         @media (max-width: 768px) {
         .upcoming-compact-card .project-title { font-size: 1.1rem; }
         .upcoming-compact-card { padding: 1rem; }
         }
         
         /* filter tabs styling */
         .filtering span {
            cursor: pointer;
            font-size: 14px;
            font-weight: 700;
            margin-right: 10px;
            display: inline-block;
            margin-bottom: 5px;
            padding: 6px 15px;
            border-radius: 4px;
            background: #0f313a;
            color: #ffffff;
            transition: all 0.3s;
         }
         .filtering span.active {
            background: #7f021a;
            color: #fff;
         }
         @media (max-width: 768px) {
            .filtering span {
               margin: 0 5px 8px 5px;
               font-size: 12px;
               padding: 5px 10px;
               display: inline-block;
            }
            .filtering {
               text-align: center;
               margin-bottom: 20px;
            }
         }
         
         /* hide classes for sections and items */
         .upcoming-section.hide-upcoming, .image-grid-wrapper.hide-grid {
            display: none;
         }
         .image-card.hide-card {
            display: none;
         }
         
         /* CSS Grid for image cards - ensures exactly 3 per row */
         .image-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
         }
         @media (max-width: 992px) {
            .image-grid {
               grid-template-columns: repeat(2, 1fr);
            }
         }
         @media (max-width: 576px) {
            .image-grid {
               grid-template-columns: 1fr;
            }
         }
         .image-card {
            width: 100%;
         }