     /* ============================================
   RESET & BASE STYLES
   ============================================ */

     * {
         margin: 0;
         padding: 0;
         box-sizing: border-box;
     }

     :root {
         /* Color Palette */
         --bg-color: hsl(0, 0%, 100%);
         --text-color: hsl(220, 13%, 13%);
         --primary: hsl(220, 70%, 20%);
         --primary-foreground: hsl(0, 0%, 100%);
         --secondary: hsl(220, 15%, 96%);
         --accent: hsl(38, 92%, 50%);
         --accent-foreground: hsl(0, 0%, 100%);
         --muted: hsl(220, 15%, 96%);
         --muted-foreground: hsl(220, 13%, 46%);
         --border: hsl(220, 13%, 91%);

         /* Gradients */
         --gradient-hero: linear-gradient(135deg, hsl(220, 70%, 20%) 0%, hsl(220, 60%, 30%) 100%);
         --gradient-hero2: linear-gradient(135deg, hsl(0, 0%, 100%) 0%, hsl(0, 0%, 93%) 100%);
         --gradient-accent: linear-gradient(135deg, hsl(38, 92%, 50%) 0%, hsl(45, 95%, 55%) 100%);

         /* Shadows */
         --shadow-soft: 0 2px 20px -5px hsla(220, 70%, 20%, 0.1);
         --shadow-medium: 0 8px 30px -10px hsla(220, 70%, 20%, 0.15);
         --shadow-large: 0 20px 60px -15px hsla(220, 70%, 20%, 0.2);

         /* Transitions */
         --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     }

     html {
         scroll-behavior: smooth;
     }

     body {
         font-family: 'Inter', sans-serif;
         background-color: var(--bg-color);
         color: var(--text-color);
         line-height: 1.6;
         -webkit-font-smoothing: antialiased;
         -moz-osx-font-smoothing: grayscale;
     }

     .container {
         max-width: 100%;
         margin: 0 auto;
         padding: 0 1.5rem;
     }

     /* ============================================
   NAVBAR
   ============================================ */

     .navbar {
         position: fixed;
         top: 0;
         left: 0;
         right: 0;
         z-index: 1000;
         background-color: transparent;
         transition: var(--transition);
     }

     .navbar.scrolled {
         background-color: hsla(0, 0%, 100%, 0.95);
         backdrop-filter: blur(10px);
         box-shadow: var(--shadow-soft);
     }



     .navbar-content {
         display: flex;
         align-items: center;
         justify-content: space-between;
         padding: 1.5rem 0;
     }

     .logo h1 {
         font-size: 1.75rem;
         font-weight: 800;
         background: var(--gradient-hero2);
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         background-clip: text;

     }

     .nav-links {
         display: flex;
         gap: 2rem;
         align-items: center;
     }

     .nav-link {
         text-decoration: none;
         color: white;
         font-weight: 500;
         transition: var(--transition);
         position: relative;
     }

     /* Scroll ke baad apply hone wali class */
     .navbar.scrolled .nav-link {
         color: black;
     }

     .navbar.scrolled .logo h1 {
         background: var(--gradient-hero);
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         background-clip: text;
     }


     .nav-link::after {
         content: '';
         position: absolute;
         bottom: -4px;
         left: 0;
         width: 0;
         height: 2px;
         background: var(--accent);
         transition: var(--transition);
         color: black;
     }

     .nav-link:hover {
         color: var(--accent);
     }

     .nav-link:hover::after {
         width: 100%;
     }

     .mobile-menu-btn {
         display: none;
         background: none;
         border: none;
         cursor: pointer;
         padding: 0.5rem;
     }

     .hamburger {
         display: block;
         width: 25px;
         height: 2px;
         background-color: white;
         position: relative;
         transition: var(--transition);
     }

     .hamburger::before,
     .hamburger::after {
         content: '';
         position: absolute;
         width: 25px;
         height: 2px;
         background-color: hsl(0deg 0% 100%);
         transition: var(--transition);
     }

     .hamburger::before {
         top: -8px;
     }

     .hamburger::after {
         bottom: -8px;
     }

     .navbar.scrolled .hamburger,
     .navbar.scrolled .hamburger::before,
     .navbar.scrolled .hamburger::after {
         background-color: #0f2757;
         /* ya jo color chahiye */
     }

     .mobile-menu-btn.active .hamburger {
         background-color: transparent;
     }

     .mobile-menu-btn.active .hamburger::before {
         top: 0;
         transform: rotate(45deg);
     }

     .mobile-menu-btn.active .hamburger::after {
         bottom: 0;
         transform: rotate(-45deg);
     }

     .mobile-menu {
         background-color: hsla(0, 0%, 100%, 0.95);
         backdrop-filter: blur(10px);
         display: none;
         flex-direction: column;
         gap: 1rem;
         padding: 1rem 10px;
         border-top: 1px solid var(--border);
         margin-bottom: 20px;
         border-radius: 10px;
     }

     .mobile-menu.active {
         display: flex;

     }

     .mobile-nav-link {
         text-decoration: none;
         color: var(--text-color);
         font-weight: 500;
         padding: 0.75rem 0;
         transition: var(--transition);
     }

     .mobile-nav-link:hover {
         color: var(--accent);
     }

     .mobile-btn {
         margin-top: 1rem;
     }

     /* ============================================
   BUTTONS
   ============================================ */

     .btn {
         display: inline-flex;
         align-items: center;
         justify-content: center;
         padding: 0.75rem 1.5rem;
         border-radius: 0.5rem;
         font-weight: 600;
         text-decoration: none;
         border: none;
         cursor: pointer;
         transition: var(--transition);
         font-size: 1rem;
     }

     .btn-primary {
         background: var(--gradient-hero);
         color: var(--primary-foreground);
     }

     .btn-primary:hover {
         transform: translateY(-2px);
         box-shadow: var(--shadow-medium);
     }

     .btn-outline {
         background: transparent;
         color: var(--primary-foreground);
         border: 2px solid var(--primary-foreground);
     }

     .btn-outline:hover {
         background: hsla(0, 0%, 100%, 0.1);
         transform: translateY(-2px);
     }

     .btn-lg {
         padding: 1rem 2rem;
         font-size: 1.125rem;
     }

     /* ============================================
   HERO SECTION
   ============================================ */

     .hero {
         min-height: 100vh;
         display: flex;
         align-items: center;
         position: relative;
         background: var(--gradient-hero);
         color: var(--primary-foreground);
         overflow: hidden;
         padding-top: 5rem;
     }

     .hero::before {
         content: '';
         position: absolute;
         inset: 0;
         background-image: url('/saajandcompany/images/Background1.jpg');
         background-size: cover;
         background-position: center;
         background-repeat: no-repeat;
         z-index: 0;
     }

     .hero::after {
         content: '';
         position: absolute;
         inset: 0;
         background: var(--gradient-hero);
         opacity: 0.9;
         z-index: 1;
     }

     .hero-pattern {
         position: absolute;
         inset: 0;
         background-image:
             radial-gradient(circle at 20% 30%, hsla(38, 92%, 50%, 0.1) 0%, transparent 50%),
             radial-gradient(circle at 80% 70%, hsla(220, 70%, 50%, 0.1) 0%, transparent 50%);
         animation: patternMove 20s ease-in-out infinite;
     }

     @keyframes patternMove {

         0%,
         100% {
             transform: translate(0, 0) scale(1);
         }

         50% {
             transform: translate(20px, 20px) scale(1.05);
         }
     }

     .hero-content {
         position: relative;
         z-index: 10;
         text-align: center;
         padding: 0;
     }

     .badge {
         display: inline-block;
         padding: 0.5rem 1.5rem;
         background: hsla(0, 0%, 100%, 0.1);
         backdrop-filter: blur(10px);
         border-radius: 9999px;
         font-size: 0.875rem;
         font-weight: 600;
         margin-bottom: 2rem;
         border: 1px solid hsla(0, 0%, 100%, 0.2);
     }

     .hero-title {
         font-size: clamp(2.5rem, 5vw, 4rem);
         font-weight: 800;
         line-height: 1.2;
         margin-bottom: 1.5rem;
     }

     .accent-text {
         background: var(--gradient-accent);
         background: linear-gradient(to right, #f59f0a, #ec4899);
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         background-clip: text;
     }

     .hero-subtitle {
         font-size: 1.25rem;
         line-height: 1.8;
         max-width: 900px;
         margin: 0 auto 3rem;
         opacity: 0.95;
     }

     .hero-buttons {
         display: flex;
         gap: 1rem;
         justify-content: center;
         flex-wrap: wrap;
         margin-bottom: 5rem;
     }

     .stats-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
         gap: 2rem;
         max-width: 1000px;
         margin: 0 auto;
     }

     .stat-card {
         text-align: center;
         padding: 2rem;
         background: hsla(0, 0%, 100%, 0.1);
         backdrop-filter: blur(10px);
         border-radius: 1rem;
         border: 1px solid hsla(0, 0%, 100%, 0.2);
         transition: var(--transition);
     }

     .stat-card:hover {
         transform: translateY(-5px);
         background: hsla(0, 0%, 100%, 0.15);
     }

     .stat-number {
         font-size: 3rem;
         font-weight: 800;
         background: var(--gradient-accent);
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         background-clip: text;
         margin-bottom: 0.5rem;
     }

     .stat-label {
         font-size: 1rem;
         opacity: 0.9;
     }

     /* ============================================
   SECTION COMMON STYLES
   ============================================ */

     .section-header {
         text-align: center;
         margin-bottom: 4rem;
     }

     .section-title {
         font-size: clamp(2rem, 4vw, 3rem);
         font-weight: 800;
         color: var(--text-color);
         margin-bottom: 1rem;
     }


     .section-subtitle {
         font-size: 1.125rem;
         color: var(--muted-foreground);
         max-width: 800px;
         margin: 0 auto;
         line-height: 1.8;
     }

     /* ============================================
   ABOUT SECTION
   ============================================ */

     .about-section {
         padding: 6rem 0;
         background-color: var(--muted);
     }

     .about-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 2rem;
         max-width: 1200px;
         margin: 0 auto;
     }

     .about-card {
         background: white;
         padding: 3rem;
         border-radius: 1rem;
         box-shadow: var(--shadow-soft);
         transition: var(--transition);
     }

     .about-card:hover {
         transform: translateY(-5px);
         box-shadow: var(--shadow-medium);
     }

     .about-icon {
         width: 5rem;
         height: 5rem;
         border-radius: 1rem;
         display: flex;
         align-items: center;
         justify-content: center;
         margin-bottom: 1.5rem;
         color: white;
     }

     .gradient-hero {
         background: var(--gradient-hero);
     }

     .gradient-accent {
         background: var(--gradient-accent);
     }

     .about-title {
         font-size: 1.5rem;
         font-weight: 700;
         color: var(--text-color);
         margin-bottom: 1rem;
     }

     .about-description {
         color: var(--muted-foreground);
         line-height: 1.8;
     }

     .values-list {
         list-style: none;
         display: flex;
         flex-direction: column;
         gap: 1rem;
     }

     .values-list li {
         color: var(--muted-foreground);
         line-height: 1.8;
     }

     /* ============================================
   SERVICES SECTION
   ============================================ */

     .services-section {
         background-color: white;
     }

     .services-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 2rem;
     }

     .service-card {
         background: white;
         padding: 2.5rem;
         border-radius: 1rem;
         border: 1px solid var(--border);
         transition: var(--transition);
     }

     .service-card:hover {
         transform: translateY(-5px);
         box-shadow: var(--shadow-large);
         border-color: transparent;
     }

     .service-icon {
         width: 4rem;
         height: 4rem;
         border-radius: 0.75rem;
         display: flex;
         align-items: center;
         justify-content: center;
         margin-bottom: 1.5rem;
         color: white;
     }

     .service-icon.blue {
         background: linear-gradient(135deg, hsl(220, 70%, 50%), hsl(220, 60%, 60%));
     }

     .service-icon.green {
         background: linear-gradient(135deg, hsl(142, 71%, 45%), hsl(142, 71%, 55%));
     }

     .service-icon.purple {
         background: linear-gradient(135deg, hsl(262, 52%, 47%), hsl(262, 52%, 57%));
     }

     .service-icon.orange {
         background: linear-gradient(135deg, hsl(25, 95%, 53%), hsl(25, 95%, 63%));
     }

     .service-icon.red {
         background: linear-gradient(135deg, hsl(0, 72%, 51%), hsl(0, 72%, 61%));
     }

     .service-icon.teal {
         background: linear-gradient(135deg, hsl(173, 58%, 39%), hsl(173, 58%, 49%));
     }

     .service-title {
         font-size: 1.5rem;
         font-weight: 700;
         color: var(--text-color);
         margin-bottom: 1rem;
     }

     .service-list {
         list-style: none;
         margin-bottom: 1.5rem;
     }

     .service-list li {
         padding: 0.5rem 0;
         color: var(--muted-foreground);
         position: relative;
         padding-left: 1.5rem;
     }

     .service-list li::before {
         content: '→';
         position: absolute;
         left: 0;
         color: var(--accent);
         font-weight: 600;
     }

     .service-link {
         color: var(--accent);
         font-weight: 600;
         text-decoration: none;
         transition: var(--transition);
     }

     .service-link:hover {
         color: var(--primary);
     }

     /* ============================================
   VALUES SECTION
   ============================================ */

     .values-section {
         padding: 6rem 0;
         background-color: var(--bg-color);
     }

     .values-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 3rem;
         max-width: 1200px;
         margin: 0 auto;
     }



     .value-icon-wrapper {
         position: relative;
         display: inline-flex;
         margin-bottom: 2rem;
     }

     .value-glow {
         position: absolute;
         inset: 0;
         background: var(--gradient-accent);
         border-radius: 9999px;
         filter: blur(40px);
         opacity: 0.2;
         transition: var(--transition);
     }


     .value-icon {
         position: relative;
         width: 6rem;
         height: 6rem;
         border-radius: 9999px;
         display: flex;
         align-items: center;
         justify-content: center;
         color: white;
         box-shadow: var(--shadow-large);
         transition: var(--transition);
     }

     .value-card:hover .value-icon {
         transform: scale(1.1);
     }

     .value-title {
         font-size: 1.25rem;
         font-weight: 700;
         color: var(--text-color);
         margin-bottom: 1rem;
         transition: var(--transition);
     }

     .value-card:hover .value-title {
         color: var(--primary);

     }



     /* ============================================
   TEAM SECTION
   ============================================ */

     .team-section {
         padding: 4rem 0;
         background-color: var(--muted);
     }

     .team-grid {
         display: grid;
         /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
         grid-template-columns: repeat(2, 1fr);
         gap: 2rem;
     }

    

     .team-card:hover {
         transform: translateY(-5px);
         box-shadow: var(--shadow-large);
     }

     .team-icon {
         width: 5rem;
         height: 5rem;
         border-radius: 9999px;
         display: flex;
         align-items: center;
         justify-content: center;
         color: white;
         margin: 0 auto 1.5rem;
     }

     .team-name {
         font-size: 1.5rem;
         font-weight: 700;
         color: var(--text-color);
         margin-bottom: 0.5rem;
         text-align: center;
     }

     .team-role {
         background: linear-gradient(to right, #f59f0a, #ec4899);
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         font-weight: 600;
         text-align: center;
         margin-bottom: 1rem;
     }

     .team-description {
         color: var(--muted-foreground);
         line-height: 1.8;
         margin-bottom: 1.5rem;
     }

     .team-expertise {
         display: flex;
         flex-wrap: wrap;
         gap: 0.5rem;
         justify-content: center;
     }

     .expertise-tag {
         padding: 0.375rem 0.75rem;
         background: var(--muted);
         color: var(--text-color);
         border-radius: 9999px;
         font-size: 0.875rem;
         font-weight: 500;
     }






     /* ============================================
   FOOTER
   ============================================ */

     .footer {
         background: linear-gradient(135deg, #111827, #111a39, #111827);
         color: var(--primary-foreground);
         padding: 4rem 0 2rem;
     }

     .footer-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 3rem;
         margin-bottom: 3rem;
     }

     .footer-logo {
         font-size: 1.75rem;
         font-weight: 800;
         margin-bottom: 1rem;
     }

     .footer-description {
         opacity: 0.9;
         line-height: 1.8;
         margin-bottom: 1.5rem;
     }

     .social-links {
         display: flex;
         gap: 1rem;
     }

     .social-link {
         width: 2.5rem;
         height: 2.5rem;
         border-radius: 0.5rem;
         background: hsla(0, 0%, 100%, 0.1);
         display: flex;
         align-items: center;
         justify-content: center;
         color: white;
         text-decoration: none;
         transition: var(--transition);
     }

     .social-link:hover {
         background: hsla(0, 0%, 100%, 0.2);
         transform: translateY(-3px);
     }

     .footer-title {
         font-size: 1.25rem;
         font-weight: 700;
         margin-bottom: 1.5rem;
     }

     .footer-links,
     .footer-contact {
         list-style: none;
         display: flex;
         flex-direction: column;
         gap: 0.75rem;
     }

     .footer-links a {
         color: hsla(0, 0%, 100%, 0.8);
         text-decoration: none;
         transition: var(--transition);
     }

     .footer-links a:hover {
         color: var(--accent);
         padding-left: 5px;
     }

     .footer-contact li {
         display: flex;
         align-items: center;
         gap: 0.75rem;
         opacity: 0.9;
     }

     .footer-bottom {
         padding-top: 2rem;
         border-top: 1px solid hsla(0, 0%, 100%, 0.1);
         display: flex;
         justify-content: space-between;
         align-items: center;
         flex-wrap: wrap;
         gap: 1rem;
     }

     .footer-bottom-links {
         display: flex;
         gap: 1rem;
         align-items: center;
     }

     .footer-bottom-links a {
         color: hsla(0, 0%, 100%, 0.8);
         text-decoration: none;
         transition: var(--transition);
     }

     .footer-bottom-links a:hover {
         color: var(--accent);
     }

     /* ============================================
   RESPONSIVE STYLES
   ============================================ */

     @media (max-width: 768px) {
         .desktop-nav {
             display: none;
         }

         .mobile-menu-btn {
             display: block;
         }

         .hero {
             padding-top: 6rem;
         }

         .hero-title {
             font-size: 2rem;
         }

         .hero-subtitle {
             font-size: 1rem;
         }

         .hero-buttons {
             flex-direction: column;
             align-items: center;
         }

         .btn-lg {
             width: 100%;
             max-width: 300px;
         }

         .stats-grid {
             grid-template-columns: repeat(2, 1fr);
         }

         .section-title {
             font-size: 35px;
         }

         .about-grid,
         .services-grid,
         .values-grid,
         .team-grid {
             grid-template-columns: 1fr;
         }

         .footer-bottom {
             flex-direction: column;
             text-align: center;
         }
     }

     @media (max-width: 480px) {
         .container {
             padding: 0 1rem;
         }

         .stats-grid {
             grid-template-columns: 1fr;
         }

         .stat-number {
             font-size: 2.5rem;
         }
     }