:root {
            --primary-color: #2563eb;
            --primary-dark: #1e40af;
            --secondary-color: #f59e0b;
            --accent-color: #10b981;
            --text-color: #1f2937;
            --text-light: #6b7280;
            --bg-color: #ffffff;
            --card-bg: #f9fafb;
            --dark-bg: #111827;
            --dark-card: #1f2937;
            --dark-text: #f3f4f6;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --border-radius: 12px;
            --section-padding: 5rem 0;
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --text-color: var(--dark-text);
                --bg-color: var(--dark-bg);
                --card-bg: var(--dark-card);
                --text-light: #9ca3af;
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--bg-color);
            transition: var(--transition);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header with animated gradient */
        header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 4rem 0 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 75% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
            z-index: 1;
        }

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

        /* Profile section */
        .profile-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 3rem;
        }

        .profile-img-wrapper {
            position: relative;
            width: 220px;
            height: 220px;
            margin-bottom: 2rem;
        }

        .profile-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 8px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
        }

        .profile-img-wrapper::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            border: 3px dashed var(--secondary-color);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .title {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            font-weight: 400;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .title span {
            color: var(--secondary-color);
            font-weight: 500;
        }

        /* Companies badges */
        .companies {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
        }

        .company {
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .company:hover {
            background-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
        }

        /* Social links */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.5rem;
            border-radius: 50%;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Main sections */
        section {
            padding: var(--section-padding);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            font-size: 2.5rem;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            margin: 1rem auto;
            border-radius: 2px;
        }

        /* About section */
        #about {
            background-color: var(--card-bg);
            clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
            padding: 7rem 0;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        /* Business Portfolio Section */
        #portfolio {
            padding: 5rem 0;
            background: linear-gradient(to bottom, var(--card-bg), var(--bg-color));
        }

        .portfolio-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .portfolio-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .portfolio-card ul li a{
            text-decoration: none;
            color: var(--text-color);
        }

        .portfolio-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .portfolio-title {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }

        .portfolio-subtitle {
            color: var(--secondary-color);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        /* Roles section */
        .roles {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .role-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

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

        .role-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
        }

        .role-title {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        .role-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary-color);
        }

        .role-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }

        /* Stats section */
        #stats {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            color: white;
            clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
            padding: 7rem 0;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
            color: var(--secondary-color);
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Testimonials */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            position: relative;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 3rem;
            color: var(--secondary-color);
            opacity: 0.3;
            position: absolute;
        }

        .testimonial-text::before {
            top: -1rem;
            left: -1rem;
        }

        .testimonial-text::after {
            bottom: -2rem;
            right: -1rem;
        }

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

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }

        .author-info h4 {
            margin-bottom: 0.2rem;
            font-size: 1.1rem;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Contact CTA */
        #contact {
            text-align: center;
            background-color: var(--card-bg);
            clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
            padding: 6rem 0 8rem;
        }

        .contact-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            margin-top: 2rem;
            transition: var(--transition);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: white;
            text-align: center;
            padding: 1rem 0 1rem 0;
            position: relative;
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .footer-logo {
            width: 250px;
            height:auto;
            margin: 0 auto;
            margin-bottom: 1rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .copyright {
            margin-top: 2rem;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

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

        @media (max-width: 768px) {
            header {
                padding: 3rem 0 5rem;
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
            }
            h1 {
                font-size: 2.2rem;
            }
            .title {
                font-size: 1.2rem;
            }
            .profile-img-wrapper {
                width: 180px;
                height: 180px;
            }
            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            #about, #stats, #contact, #portfolio {
                clip-path: none;
                padding: 4rem 0;
            }
            .role-card, .portfolio-card {
                padding: 2rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 1.5rem;
            }
            header {
                padding: 2rem 0 4rem;
            }
            h1 {
                font-size: 2rem;
            }
            .profile-img-wrapper {
                width: 150px;
                height: 150px;
            }
            .companies {
                flex-direction: column;
                align-items: center;
            }
            .company {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
            .roles, .testimonials, .stats-container, .portfolio-container {
                grid-template-columns: 1fr;
            }
        }
            .social-links svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
            transition: var(--transition);
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        
        /* -------news read share end------- */
        .stick {
          z-index: 999999;
          position: fixed;
          top: 70%;
          right: 0;
          transform: translateY(-70%);
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          Width: 50px;
          height: auto;
          border-top-left-radius: 10px;
          border-bottom-left-radius: 10px;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }
        
        .whatsa {
          display: inline-block;
          text-align: center;
          width: 50px;
          height: 50px;
          background-color: #25D366;
          border-top-left-radius: 10px;
        }
        
        .whatsa a{
          display: inline-block;
          width: 50px;
          height: 50px;
          text-align: center;
        }
        
        .whatsa a img, .shareap a img{
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
        .shareap{
          display: inline-block;
          text-align: center;
          padding: 10px;
          width: 50px;
          height: 50px;
          background-color: #fff;
          border-bottom-left-radius: 10px;
        }
        .shareap a{
          display: inline-block;
          width: 30px;
          height: 30px;
          text-align: center;
        } 