        /* Global Styles */
        :root {
            --primary: #1a365d;
            --secondary: #f5a623;
            --accent: #e84855;
            --dark: #2a2a2a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --light-bg: #f5f7fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            font-family: 'Montserrat', sans-serif;
            background-color: var(--light-bg);
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }



        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--primary);
            color: white;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background: #0f2240;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background: var(--secondary);
            color: var(--dark);
        }

        .btn-secondary:hover {
            background: #F5A623;
        }

        .btn-accent {
            background: var(--accent);
        }

        .btn-accent:hover {
            background: #d32f3c;
        }

        .section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark);
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #f5a623;
            margin: 20px auto;
        }

        .section-title span {
            color: #f5a623;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: #fcb713;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 10px 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            font-family: 'Playfair Display', serif;
        }

        .logo img {
            width: 140px;
            filter: drop-shadow(0 0 5px white);
        }

        .logo span {
            color: #f5a623;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 18px;
            position: relative;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 1rem;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #ffffff;
        }

        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)), url('https://images.unsplash.com/photo-1608506375591-b91b98fe3189?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            flex: 1;
            padding-right: 30px;
        }

        .hero-text h1 {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .hero-image {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }

        /* Services Section */
        .services {
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
            border-top: 5px solid #4f5052;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-top: 5px solid #f5a623;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: #f5a623;
            font-size: 2rem;
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #4f5052;
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .service-link {
            color: #4f5052;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

        .service-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Portfolio Section */
        .portfolio-item {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .portfolio-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        /* Modal animation */
        .modal-content {
            transition: all 0.3s ease-out;
            transform: scale(0.9);
            opacity: 0;
        }

        .modal-open .modal-content {
            transform: scale(1);
            opacity: 1;
        }


        /* Navigation arrows */
        .nav-arrow {
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .nav-arrow:hover {
            background: var(--primary);
        }



        .masonry {
            column-count: 1;
            column-gap: 1.5rem;
        }


        /* Career page */
        :root {
            --primary: #fcb813;
            --primary-dark: #e6a710;
            --text-color: #1a1a1a;

            .gold-accent {
                position: relative;
                display: inline-block;
            }

            .gold-accent:after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 3px;
                background: var(--primary);
            }

            .career-card {
                transition: all 0.3s ease;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            }

            .career-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            }

            .btn-premium {
                background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(252, 184, 19, 0.3);
                position: relative;
                overflow: hidden;
            }

            .btn-premium:before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                transition: 0.5s;
            }

            .btn-premium:hover:before {
                left: 100%;
            }

            .btn-premium:hover {
                transform: translateY(-2px);
                box-shadow: 0 7px 20px rgba(252, 184, 19, 0.4);
            }

            .department-title {
                background: linear-gradient(135deg, #fcb813 0%, #e6a710 100%);
                color: white;
                padding: 12px 20px;
                border-radius: 8px;
                margin: 40px 0 20px 0;
                display: inline-block;
            }
        }


        /* All Work Css */
        /* Icon glow effect on hover */
        .group:hover .icon-glow {
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(0, 0, 0, 0.1);
        }


        @media (min-width: 640px) {
            .masonry {
                column-count: 2;
            }
        }

        @media (min-width: 1024px) {
            .masonry {
                column-count: 3;
            }
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .masonry-item:hover {
            box-shadow: 0 8px 30px rgba(252, 184, 19, 0.6);
            /* Yellow glow */
            transform: translateY(-6px);
        }



        /* Process Section */
        .process {
            background: linear-gradient(to right, #1a365d, #2c5282);
            color: white;
            position: relative;
        }

        .process .section-title {
            color: white;
        }

        .process .section-title:after {
            background: var(--secondary);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }

        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 20px;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--secondary);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 25px;
            position: relative;
        }

        .step-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        /* Testimonials */
        .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
        .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
            width: 16px !important;
            height: 4px !important;
            border-radius: 5px !important;
            margin: 0 6px !important;
        }




        /* Clients Section */

        /* Hide scrollbar for better UI */
        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }

        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Optional: Add smooth scroll */
        .clients-slider {
            scroll-behavior: smooth;
        }



        /* Responsive Styles */
        @media (max-width: 1100px) {
            .hero-text h1 {
                font-size: 3.2rem;
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-text {
                padding-right: 0;
                margin-bottom: 50px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .process-steps {
                flex-direction: column;
                gap: 40px;
            }

            .process-steps:before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
                gap: 25px;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .section-title {
                font-size: 2.3rem;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .testimonial-item {
                padding: 30px;
            }

            .testimonial-text {
                font-size: 1.1rem;
            }

            .section {
                padding: 80px 0;
            }
        }

        @media (max-width: 576px) {
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2rem;
            }


            .testimonial-item:before {
                font-size: 4rem;
                top: 10px;
                left: 20px;
            }

            .filter-btn {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }


        /* Slider Banner Styling   */
        /* Custom small arrows */
        .swiper-button-next,
        .swiper-button-prev {
            @apply w-8 h-8 bg-black/50 text-white rounded-full flex items-center justify-center shadow-md;
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 16px !important;
            /* smaller arrow icon */
        }

        /* Custom pagination dots */
        .swiper-pagination-bullet {
            @apply bg-white/70 w-3 h-3 opacity-100;
        }

        .swiper-pagination-bullet-active {
            @apply bg-black-500 w-4 h-4;
        }


        .swiper-button-next::after,
        .swiper-button-prev::after {
            color: #FFD700 !important;
        }

        /* Pagination Dots */
        .swiper-pagination-bullet {
            background-color: #d4af37 !important;
            opacity: 0.5;
        }

        .swiper-pagination-bullet-active {
            background-color: #d4af37 !important;
            opacity: 1;
        }




        /* Core Services Section */
        .core-services {
            padding: 100px 0;
            background: var(--light);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .section-title h2 span {
            color: var(--primary);
        }

        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .title-divider {
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto;
            border-radius: 2px;
        }

        .core-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .core-service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
            padding: 40px 30px;
            position: relative;
            z-index: 1;
        }

        .core-service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--primary);
            z-index: -1;
            transition: all 0.5s ease;
        }

        .core-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .core-service-card:hover:before {
            height: 100%;
        }

        .core-service-card:hover .core-service-icon,
        .core-service-card:hover h3,
        .core-service-card:hover p {
            color: white;
        }

        .core-service-icon {
            font-size: 60px;
            color: var(--primary);
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .core-service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .core-service-card p {
            color: #666;
            transition: all 0.3s ease;
            line-height: 1.6;
        }

        /* Service Details Section */
        .service-details {
            padding: 100px 0;
            background: white;
        }

        .service-detail {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 100px;
        }

        .service-detail:nth-child(even) .service-content {
            order: 2;
        }

        .service-detail:nth-child(even) .service-image {
            order: 1;
        }

        .service-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.5s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        .service-content h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .service-content h3 span {
            color: var(--primary);
        }

        .service-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .service-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .service-features li i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 14px;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            background: var(--primary);
            color: var(--dark);
            border: 2px solid var(--primary);
        }

        .btn:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 40px;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-btn {
            background: white;
            color: var(--dark);
        }

        .cta-btn:hover {
            background: transparent;
            color: white;
            border-color: white;
        }



        /* Custom Premium Styles */
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .premium-shadow {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .hover-lift {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .text-gradient {
            background: linear-gradient(135deg, #fcb813 0%, #ff6b00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .border-gradient {
            background: linear-gradient(135deg, #fcb813, #ff6b00);
            padding: 2px;
            border-radius: 12px;
        }

        .modal-enter {
            animation: modalEnter 0.3s ease-out;
        }

        @keyframes modalEnter {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .image-zoom {
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .image-zoom:hover {
            transform: scale(1.05);
        }


        /* Custom Premium Styles */
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .premium-shadow {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .hover-lift {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .text-gradient {
            background: linear-gradient(135deg, #fcb813 0%, #ff6b00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .border-gradient {
            background: linear-gradient(135deg, #fcb813, #ff6b00);
            padding: 2px;
            border-radius: 12px;
        }

        .modal-enter {
            animation: modalEnter 0.3s ease-out;
        }

        @keyframes modalEnter {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .image-zoom {
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .image-zoom:hover {
            transform: scale(1.05);
        }


        @keyframes expand {
            0% {
                width: 0;
            }

            100% {
                width: 100%;
            }
        }

        .animate-expand {
            animation: expand 1.5s ease forwards;
        }