:root {
  --primary: #1E40AF;       /* Deep professional blue */
  --secondary: #0D9488;     /* Sophisticated teal */
  --dark: #111827;          /* Dark slate for text */
  --light: #F3F4F6;         /* Soft light background */
  --accent: #D97706;        /* Warm amber for highlights */
  --text: #1F2937;          /* Dark gray (readable) */
  --text-light: #6B7280;    /* Lighter gray */
}
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Space Grotesk', sans-serif;
      color: var(--text);
      background-color: var(--light);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    section {
      padding: 100px 0;
      position: relative;
    }
    
    h1, h2, h3, h4 {
      font-weight: 600;
      line-height: 1.2;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; margin-bottom: 50px; position: relative; }
    h3 { font-size: 1.8rem; margin-bottom: 20px; }
    
    p {
      color: var(--text-light);
      margin-bottom: 20px;
      font-size: 1.1rem;
    }
    
    a {
      text-decoration: none;
      color: var(--primary);
      transition: all 0.3s ease;
    }
    
    a:hover {
      color: var(--secondary);
    }
    
    .btn {
      display: inline-block;
      background-color: var(--primary);
      color: white;
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 500;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1rem;
      box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
      background-color: var(--primary);
    }
    
    .btn-outline {
      background-color: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
      box-shadow: none;
    }
    
    .btn-outline:hover {
      background-color: var(--primary);
      color: white;
    }
    
    .text-center {
      text-align: center;
    }
    
    .bg-light {
      background-color: var(--light);
    }
    
    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      padding: 10px 0;
      transition: all 0.3s ease;
      background-color: rgba(247, 255, 247, 0.98);
    }
    
    header.scrolled {
      padding: 15px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Space Mono', monospace;
    }
    
    .logo .dot {
      width: 8px;
      height: 8px;
      background-color: var(--secondary);
      border-radius: 50%;
    }
    
    .nav-links {
      display: flex;
      gap: 30px;
    }
    
    .nav-links a {
      color: var(--dark);
      font-weight: 500;
      position: relative;
      font-size: 1.1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      text-align: center;
    }
    
    .nav-links a:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: width 0.3s ease;
    }
    
    .nav-links a:hover:after {
      width: 100%;
    }
    
    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--dark);
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 1000;
    }
    
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background-color: var(--light);
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      transition: right 0.3s ease;
      z-index: 999;
      padding: 80px 30px 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .mobile-menu.active {
      right: 0;
    }
    
    .mobile-menu a {
      color: var(--dark);
      font-size: 1.2rem;
      padding: 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu a i {
      margin-right: 10px;
    }
    
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .overlay.active {
      opacity: 1;
      visibility: visible;
    }
    
    /* Hero Section */
    #hero {
      height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 80px;
      position: relative;
      overflow: hidden;
    }
    
    .hero-content {
      display: flex;
      align-items: center;
      gap: 80px;
    }
    
    .hero-text {
      flex: 1;
      position: relative;
      z-index: 2;
      margin-top: 90px;
    }
    
    .hero-image {
      flex: 1;
      text-align: center;
      position: relative;
    }
    
    .hero-image img {
      max-width: 50%;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      transform: rotate(-3deg);
      transition: transform 0.5s ease;
    }
    
    .hero-image:hover img {
      transform: rotate(0deg);
    }
    
    .hero-image:before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background-color: var(--accent);
      border-radius: 30px;
      top: -30px;
      right: -30px;
      z-index: -1;
      transform: rotate(15deg);
      opacity: 0.7;
      animation: float 6s ease-in-out infinite;
    }
    
    .hero-image:after {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      background-color: var(--secondary);
      border-radius: 50%;
      bottom: -30px;
      left: -30px;
      z-index: -1;
      opacity: 0.5;
      animation: float 4s ease-in-out infinite;
      animation-delay: 1s;
    }
    
    .hero-title {
      font-size: 4rem;
      margin-bottom: 20px;
      line-height: 1.1;
      animation: fadeInUp 1s ease-out;
    }
    
    .hero-title span {
      color: var(--primary);
      position: relative;
      display: inline-block;
    }
    
    .hero-title span:after {
      content: '';
      position: absolute;
      bottom: 10px;
      left: 0;
      width: 100%;
      height: 15px;
      background-color: var(--accent);
      z-index: -1;
      opacity: 0.7;
    }
    
    .hero-subtitle {
      font-size: 1.5rem;
      color: var(--text-light);
      margin-bottom: 30px;
      font-weight: 400;
      animation: fadeInUp 1s ease-out 0.2s forwards;
      opacity: 0;
    }
    
    .hero-buttons {
      display: flex;
      gap: 20px;
      margin-top: 40px;
      animation: fadeInUp 1s ease-out 0.4s forwards;
      opacity: 0;
    }
    
    .hero-contact-info {
      margin-top: 50px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      animation: fadeInUp 1s ease-out 0.6s forwards;
      opacity: 0;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 1.1rem;
    }
    
    .contact-item i {
      width: 30px;
      height: 30px;
      background-color: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* About Section */
    #about {
      background-color: white;
      position: relative;
    }
    
    #about:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background: linear-gradient(to bottom, var(--light), white);
    }
    
    .about-content {
      display: flex;
      gap: 80px;
      align-items: center;
    }
    
    .about-text {
      flex: 2;
    }
    
    .about-image {
      flex: 1;
      text-align: center;
    }
    
    .about-image img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .skills-list {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 30px;
    }
    
    .skill-item {
      background-color: var(--light);
      padding: 12px 25px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Space Mono', monospace;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .skill-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }
    
    .skill-item i {
      color: var(--primary);
    }
    
    /* Projects Section */
    #projects {
      background-color: var(--light);
    }
    
    .projects-grid {
      display: grid;
      grid-template-columns: auto auto;
      gap: 40px;
    }
    
    .project-card {
      background-color: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.5s ease;
      position: relative;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .project-card.animate {
      opacity: 1;
      transform: translateY(0);
    }
    
    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .project-image {
      height: 250px;
      overflow: hidden;
    }
    
    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }
    
    .project-card:hover .project-image img {
      transform: scale(1.1);
    }
    
    .project-info {
      padding: 30px;
    }
    
    .project-links {
      display: flex;
      gap: 15px;
      margin-top: 25px;
    }
    
    .project-tag {
      position: absolute;
      top: 20px;
      right: 20px;
      background-color: var(--accent);
      color: var(--dark);
      padding: 5px 15px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
    }
    
    /* Clients Section */
    #clients {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    
    .section-subtitle {
      max-width: 700px;
      margin: 0 auto 60px;
      color: var(--text-light);
      font-size: 1.2rem;
    }
    
    .clients-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      perspective: 1000px;
    }
    
    .client-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
      display: flex;
      flex-direction: column;
      transform-style: preserve-3d;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .client-card.animate {
      opacity: 1;
      transform: translateY(0);
    }
    
    .client-card:hover {
      transform: translateY(-10px) rotateX(5deg);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .client-logo-container {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 40px;
      overflow: hidden;
    }
    
    .logo-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      opacity: 0.05;
      z-index: 1;
      transition: all 0.5s ease;
    }
    
    .client-card:hover .logo-bg {
      opacity: 0.1;
      transform: scale(1.05);
    }
    
    .client-logo {
      max-height: 120px;
      max-width: 80%;
      position: relative;
      z-index: 2;
      filter: grayscale(100%) contrast(0.8);
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
      transform: scale(0.95);
    }
    
    .client-card:hover .client-logo {
      filter: grayscale(0%) contrast(1);
      transform: scale(1);
    }
    
    .client-info {
      padding: 30px;
      flex-grow: 1;
      transform: translateZ(30px);
    }
    
    .client-info h3 {
      color: var(--dark);
      margin-bottom: 15px;
      font-size: 1.5rem;
      transition: color 0.3s ease;
    }
    
    .client-card:hover .client-info h3 {
      color: var(--primary);
    }
    
    .client-highlights {
      margin-top: 25px;
    }
    
    .highlight-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      color: var(--text-light);
      transition: all 0.3s ease;
      transform: translateX(-10px);
      opacity: 0;
    }
    
    .client-card:hover .highlight-item {
      transform: translateX(0);
      opacity: 1;
    }
    
    .highlight-item:nth-child(1) {
      transition-delay: 0.1s;
    }
    .highlight-item:nth-child(2) {
      transition-delay: 0.2s;
    }
    .highlight-item:nth-child(3) {
      transition-delay: 0.3s;
    }
    
    .highlight-item i {
      color: var(--primary);
      transition: transform 0.3s ease;
    }
    
    .highlight-item:hover i {
      transform: scale(1.2);
    }
    
    /* Services Section */
    #services {
      padding: 100px 0;
      background-color: white;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 60px;
    }
    
    .service-card {
      background: var(--light);
      padding: 40px 30px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.5s ease;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .service-card.animate {
      opacity: 1;
      transform: translateY(0);
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 30px;
      position: relative;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .icon-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: var(--primary);
      opacity: 0.1;
      border-radius: 50%;
      transition: all 0.5s ease;
    }
    
    .service-card:hover .icon-bg {
      transform: scale(1.1);
      opacity: 0.15;
    }
    
    .service-card h3 {
      color: var(--dark);
      margin-bottom: 20px;
      font-size: 1.5rem;
    }
    
    .service-features {
      margin-top: 25px;
      list-style: none;
    }
    
    .service-features li {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-light);
    }
    
    .service-features i {
      color: var(--primary);
      font-size: 1.1rem;
    }
    
    /* Experience Section */
    #experience {
      background-color: white;
    }
    
    .experience-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .experience-item {
      display: flex;
      gap: 40px;
      margin-bottom: 60px;
      position: relative;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .experience-item.animate {
      opacity: 1;
      transform: translateY(0);
    }
    
    .experience-date {
      flex: 1;
      text-align: right;
      font-family: 'Space Mono', monospace;
      color: var(--primary);
      font-weight: 700;
    }
    
    .experience-content {
      flex: 3;
      padding-bottom: 40px;
      border-left: 2px dashed var(--secondary);
      padding-left: 40px;
      position: relative;
    }
    
    .experience-content:before {
      content: '';
      position: absolute;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background-color: var(--primary);
      left: -8.5px;
      top: 5px;
    }
    
    .experience-content h3 {
      color: var(--dark);
    }
    
    .experience-content ul {
      margin-left: 20px;
      margin-top: 15px;
    }
    
    .experience-content li {
      margin-bottom: 10px;
      position: relative;
    }
    
    .experience-content li:before {
      content: '▹';
      position: absolute;
      left: -20px;
      color: var(--primary);
    }
    
    /* Contact Section */
    #contact {
      background-color: var(--dark);
      color: white;
    }
    
    #contact h2, #contact p {
      color: white;
    }
    
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      background-color: rgba(255, 255, 255, 0.1);
      padding: 50px;
      border-radius: 20px;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .contact-form.animate {
      opacity: 1;
      transform: translateY(0);
    }
    
    .form-group {
      margin-bottom: 25px;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.5s ease;
    }
    
    .form-group.animate {
      opacity: 1;
      transform: translateY(0);
    }
    
    .form-group label {
      display: block;
      margin-bottom: 10px;
      font-weight: 500;
    }
    
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 15px;
      border: none;
      border-radius: 10px;
      font-family: inherit;
      background-color: rgba(255, 255, 255, 0.9);
      transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.3);
    }
    
    .form-group textarea {
      min-height: 150px;
    }
    
    /* Footer */
    footer {
      background-color: var(--dark);
      color: white;
      padding: 80px 0 40px;
    }
    
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    
    .footer-left {
      flex: 1;
      min-width: 300px;
      margin-bottom: 40px;
      text-align: left;
    }
    
    .footer-right {
      flex: 1;
      min-width: 300px;
      text-align: right;
    }
    
    .footer-logo {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
      font-family: 'Space Mono', monospace;
      margin-bottom: 20px;
      display: inline-block;
    }
    
    .footer-note {
      max-width: 400px;
      margin-bottom: 30px;
      font-style: italic;
      opacity: 0.8;
      text-align: left;
    }
    
    .social-links {
      display: flex;
      gap: 20px;
      margin: 30px 0;
      justify-content: flex-start;
    }
    
    .social-links a {
      color: white;
      font-size: 1.3rem;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      background-color: rgba(255, 255, 255, 0.1);
    }
    
    .social-links a:hover {
      background-color: var(--primary);
      transform: translateY(-5px);
    }
    
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: flex-end;
    }
    
    .footer-links a {
      color: white;
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--accent);
    }
    
    .copyright {
      margin-top: 40px;
      font-size: 0.9rem;
      opacity: 0.6;
      text-align: center;
      width: 100%;
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes float {
      0%, 100% {
        transform: translateY(0) rotate(15deg);
      }
      50% {
        transform: translateY(-20px) rotate(15deg);
      }
    }
    
    /* Responsive */
    @media (max-width: 992px) {
          .hero-image img{
            max-width: 20%;
            position: relative;
            top: 150px;
           right: -30%;
            margin: 0 auto;
        }
      .hero-content,
      .about-content {
        flex-direction: column;
      }
      
      .hero-image {
        order: -1;
        margin-bottom: 60px;
      }
      
      .about-image {
        margin-top: 60px;
      }
      
      .experience-item {
        flex-direction: column;
        gap: 15px;
      }
      
      .experience-date {
        text-align: left;
      }
      
      .experience-content {
        border-left: none;
        padding-left: 0;
        border-top: 2px dashed var(--secondary);
        padding-top: 20px;
      }
      
      .experience-content:before {
        left: 0;
        top: -8.5px;
      }
      
      .clients-grid {
        gap: 30px;
      }
      
      .client-logo-container {
        height: 180px;
        padding: 30px;
      }
    }
    
    @media (max-width: 768px) {
          .hero-image img{
            max-width: 20%;
            position: relative;
            top: 140px;
            right:  -30%;
            margin: 0 auto;
        }
      .hero-title {
        font-size: 3rem;
      }
      
      .hero-subtitle {
        font-size: 1.2rem;
      }
      
      .hero-buttons {
        flex-direction: column;
      }
      
      .projects-grid {
        grid-template-columns: 1fr;
      }
      
      .contact-form {
        padding: 30px;
      }
      
      .clients-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }
      
      .client-card {
        margin-bottom: 30px;
      }
      
      .section-subtitle {
        margin-bottom: 40px;
        font-size: 1.1rem;
      }
      
      .services-grid {
        grid-template-columns: 1fr;
      }
      
      /* Mobile Menu */
      .mobile-menu-btn {
        display: block;
      }
      
      .nav-links {
        display: none;
      }
      
      /* Footer adjustments */
      .footer-content {
        flex-direction: column;
      }
      
      .footer-left, .footer-right {
        text-align: center;
      }
      
      .social-links {
        justify-content: center;
      }
      
      .footer-links {
        align-items: center;
      }
      
      .footer-note {
        margin: 0 auto 30px;
        text-align: center;
      }
       #hero {
        height: 130vh;
      }
    }
    
    @media (max-width: 576px) {
            .hero-image img{
            max-width: 30%;
            position: relative;
            top: 150px;
           right: -30%;
            margin: 0 auto;
        }
      .hero-title {
        font-size: 2.5rem;
      }
      
      h2 {
        font-size: 2rem;
      }
      
      .client-logo-container {
        height: 150px;
        padding: 20px;
      }
      
      .client-info {
        padding: 20px;
      }
      
      .client-info h3 {
        font-size: 1.3rem;
      }
      
      .highlight-item {
        font-size: 0.95rem;
      }
      
      .service-card {
        padding: 30px 20px;
      }
      
    }
    
    @media (max-width: 480px) {
         .hero-image img{
            max-width: 30%;
            position: relative;
            top: 120px;
           right: -20%;
            margin: 0 auto;
        }
      .hero-title {
        font-size: 2.2rem;
        
      }
      
      .hero-subtitle {
        font-size: 1rem;
      }
      
      .btn {
        padding: 12px 25px;
        font-size: 0.6rem;
        width: max-content;
      }
      
      .contact-form {
        padding: 20px;
        
      }
      .hero-contact-info span {
      
        font-size: 15px;
      }
      #hero {
        height: 130vh;
      }
      .project-image img{
        width: 100%;
        
      }
    }