    @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Permanent+Marker&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      width: 100vw;
      height: 100vh;
      font-family: "Poppins", sans-serif;
      background: #000;
      overflow-x: hidden;
      overflow-y: scroll;
        cursor: none;
    }

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #f9d976, #f39c12);
  border-radius: 50%;
  box-shadow: 
    0 0 10px rgba(249, 217, 118, 0.7),
    0 0 20px rgba(243, 156, 18, 0.5);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease, background 0.3s ease;
}

/* Orbiting ring with golden pulse */
.cursor-orbit {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  pointer-events: none;
  z-index: 9998;
  animation: orbitPulseGold 2.5s ease-in-out infinite;
  transition: transform 0.1s ease, box-shadow 0.3s ease;
}

@keyframes orbitPulseGold {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  }
}


    a {
      text-decoration: none;
    }

    html {
      scroll-behavior: smooth;
    }

    /* WebKit browsers (Chrome, Edge, Safari) */
    ::-webkit-scrollbar {
      width: 12px;
    }

    ::-webkit-scrollbar-track {
      background: #111;
      border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
      background: #cab0fd;
      border-radius: 10px;
      box-shadow: 0 0 6px #cab0fd88;
      transition: all 0.3s ease;
      border: 2px solid #111;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #d8c4ff;
      box-shadow: 0 0 10px #cab0fdcc;
    }

    /* Firefox support */
    html {
      scrollbar-color: #cab0fd #111;
      scrollbar-width: thin;
    }

    @keyframes subtleGlow {
      0% {
        box-shadow: 0 0 2px gold;
      }
      50% {
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
      }
      100% {
        box-shadow: 0 0 2px gold;
      }
    }

    /* Improved Header */
    .headerdiv {
      width: min(90vw, 800px);
      height: auto;
      position: fixed;
      left: 50%;
      transform: translate(-50%, 10px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 0.5px solid gold;
      border-radius: 10px;
      z-index: 10000001;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(10px);
      animation: subtleGlow 4s ease-in-out infinite;
      padding: 0 20px;
      transition: all 0.3s ease;
    }

    .logoimg {
      width: 150px;
      height: 80px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .menudiv {
      display: flex;
      gap: 20px;
      align-items: center;
      color: #fff;
      flex-wrap: wrap;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 5px;
      background: none;
      border: none;
      color: #fff;
      font-size: 24px;
      transition: all 0.3s ease;
    }

    .mobile-menu-toggle span {
      width: 25px;
      height: 3px;
      background: #fff;
      margin: 3px 0;
      transition: 0.3s;
      border-radius: 2px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }

    .videobanner {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .videobanner video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -10;
    }

    .videobanner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: -5;
    }

    .menua {
      position: relative;
      display: inline-block;
      font-size: 16px;
      font-weight: bold;
      color: #fff;
      text-decoration: none;
      cursor: pointer;
      padding: 8px 15px;
      transition: all 0.4s ease;
      border-radius: 25px;
      white-space: nowrap;
    }

    .menua:hover {
      color: #8c52ff;
      background-color: rgb(38 38 38 / 0.7);
      transform: translateY(-2px);
    }

    .containerdiv {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      margin-top: 5%;
      padding: 0 20px;
    }

    .footerdiv {
      width: 100%;
      min-height: 100px;
      color: #fff;
      padding: 2% 20px;
      text-align: center;
    }

    .leftdiv {
      width: min(600px, 100%);
      text-align: center;
      margin: auto;
      color: #fff;
      padding: 0 20px;
    }

    .rightdiv {
      width: min(600px, 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
    }

    .mainheading {
      font-size: clamp(30px, 8vw, 50px);
      color: #fff;
      font-family: "Outfit", sans-serif;
      line-height: 1.2;
    }

    .toptextdiv {
      font-family: "Permanent Marker", cursive;
      font-size: clamp(18px, 4vw, 25px);
      margin-bottom: 10px;
    }

    .infodiv {
      font-family: "Poppins", sans-serif;
    }

    .abhimanimg {
      z-index: 100001;
      max-width: 100%;
      height: auto;
    }

    .infowrapper {
      height: 40px;
      margin-top: 2%;
      overflow: hidden;
      position: relative;
      font-family: 'Poppins', sans-serif;
      border-radius: 8px;
      background: #111;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    }

    .infodiv {
      display: flex;
      flex-direction: column;
      animation: slideText 8s ease-in-out infinite;
      font-size: clamp(16px, 3vw, 22px);
      font-weight: 700;
    }

    .infodiv span {
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, #FFDE59, #8c52ff);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      animation: colorPulse 4s ease-in-out infinite;
    }

    @keyframes slideText {
      0%, 12.5% { transform: translateY(0); }
      25%, 37.5% { transform: translateY(-40px); }
      50%, 62.5% { transform: translateY(-80px); }
      75%, 87.5% { transform: translateY(-120px); }
      100% { transform: translateY(0); }
    }

    @keyframes colorPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    .ourprojects {
      width: 100%;
      min-height: 80vh;
      text-align: center;
      padding: 0 20px;
      margin-top:2%;
    }

    .skills {
      width: 100%;
      text-align: center;
      padding: 0 20px;
    }

    .contactus {
      width: 100%;
      min-height: 50vh;
      text-align: center;
      margin-top: 5%;
      padding: 0 20px;
    }

  .cardsdiv {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  padding: 40px;
  background: #000;
  flex-wrap: wrap;      
    }

    .cards {
      background: #111;
      border: 1px solid #cab0fd;
      border-radius: 20px;
      width: 400px;
      height: 400px;
      padding: 20px;
      color: #fff;
      font-family: 'Poppins', sans-serif;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 0 15px rgba(202, 176, 253, 0.1);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .cards:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 30px rgba(202, 176, 253, 0.6);
    }

    .card-image {
      height: 180px;
      background: #000;
      border-radius: 15px;
      margin-bottom: 20px;
    }

    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 15px;
    }

    .card-title {
      font-size: clamp(20px, 4vw, 24px);
      font-weight: bold;
      color: #cab0fd;
      margin-bottom: 10px;
    }

    .card-desc {
      font-size: clamp(12px, 2vw, 14px);
      color: #ccc;
      line-height: 1.6;
    }

    .MAINCIRCLEDIV {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-around;
      margin-top: 5%;
      padding: 0 20px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .circles {
      font-size: clamp(12px, 2vw, 14px);
      color: #fff;
      border-radius: 50%;
      width: min(120px, 25vw);
      height: min(120px, 25vw);
      border: 2px solid #cab0fd;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 30% 30%, #1a1a1a, #000);
      box-shadow: 0 0 12px #cab0fd66, 0 0 24px #cab0fd44;
      animation: ripple 4s infinite ease-in-out, float 5s ease-in-out infinite;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
      cursor: pointer;
      margin: 10px;
    }

    .circles::before {
      content: '';
      position: absolute;
      width: 200%;
      height: 200%;
      top: -50%;
      left: -50%;
      background: radial-gradient(circle, rgba(202, 176, 253, 0.08) 10%, transparent 60%);
      animation: wave 6s linear infinite;
      border-radius: 50%;
      z-index: 0;
    }

    .circles span {
      position: relative;
      z-index: 1;
      font-weight: 600;
      letter-spacing: 1px;
      text-align: center;
      padding: 5px;
    }

    @keyframes ripple {
      0%, 100% {
        box-shadow: 0 0 12px #cab0fd66, 0 0 24px #cab0fd33;
      }
      50% {
        box-shadow: 0 0 20px #cab0fdcc, 0 0 40px #cab0fd88;
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-6px);
      }
    }

    @keyframes wave {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }

    .circles:hover {
      transform: scale(1.1);
      box-shadow: 0 0 24px #cab0fd, 0 0 60px #cab0fd66;
      color: #fdc4b0;
    }

    .contact-details {
      color: #fff;
      margin-top: 5%;
      display: flex;
      align-items: center;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
      padding: 0 20px;
    }

    .contact-details p {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: clamp(14px, 2vw, 16px);
    }

    .linkdiv {
      background: #000;
      border-radius: 20px;
      color: #fff;
      padding: 10px 14px;
      text-align: center;
      background: radial-gradient(circle at 30% 30%, #1a1a1a, #000);
      box-shadow: 0 0 12px #cab0fd66, 0 0 24px #cab0fd44;
      border: 1px solid #cab0fd66;
      transition: all 0.3s ease;
      font-size: clamp(10px, 2vw, 12px);
    }

    .linkdiv:hover {
      background: radial-gradient(circle at 30% 30%, #1f1a1a, #100);
      box-shadow: 0 0 12px #fab0fd66, 0 0 24px #fab0fd44;
      border: 1px solid #fab0fd66;
      transform: translateY(-2px);
    }

    /* Media Queries */

    /* Large Desktop */
    @media (min-width: 1201px) {
      .containerdiv {
        max-width: 1200px;
        margin: 5% auto 0;
      }
    }

    /* Desktop */
    @media (max-width: 1200px) {
      .headerdiv {
        width: 95vw;
      }
      
      .leftdiv,
      .rightdiv {
        width: 45%;
      }
      
      .cardsdiv {
        gap: 20px;
      }
    }

    /* Tablet */
    @media (max-width: 768px) {
      .headerdiv {
        width: 95vw;
        padding: 0 15px;
      }
      
      .logoimg {
        width: 120px;
        height: 60px;
      }
      
      .menudiv {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 10px 10px;
        border-top: 1px solid gold;
        gap: 15px;
      }
      
      .menudiv.active {
        display: flex;
      }
      
      .mobile-menu-toggle {
        display: flex;
      }
      
      .menua {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
      }
      
      .containerdiv {
        flex-direction: column;
        gap: 40px;
        margin-top: 10%;
      }
      
      .leftdiv,
      .rightdiv {
        width: 100%;
      }
      
      .mainheading {
        font-size: clamp(28px, 8vw, 40px);
      }
      
      .toptextdiv {
        font-size: clamp(16px, 5vw, 22px);
      }
      
      .cardsdiv {
        gap: 15px;
        padding: 20px 10px;
      }
      
      .cards {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 350px;
      }
      
      .MAINCIRCLEDIV {
        justify-content: center;
        gap: 15px;
      }
      
      .circles {
        width: min(100px, 20vw);
        height: min(100px, 20vw);
        margin: 5px;
      }
      
      .contact-details {
        flex-direction: column;
        gap: 15px;
      }
      
      .contact-details p {
        flex-direction: column;
        text-align: center;
      }
    }

    /* Mobile */
    @media (max-width: 480px) {
      .headerdiv {
        width: 98vw;
        padding: 0 10px;
        transform: translate(-50%, 5px);
      }
      ..cursor-orbit{
          display:none;
      }
      ..cursor-dot {
          display: none;
      }
      
      .logoimg {
        width: 100px;
        height: 50px;
      }
      
      .containerdiv {
        padding: 0 10px;
        margin-top: 15%;
      }
      
      .leftdiv,
      .rightdiv {
        padding: 0 10px;
      }
      
      .mainheading {
        font-size: clamp(24px, 8vw, 35px);
      }
      
      .toptextdiv {
        font-size: clamp(14px, 5vw, 20px);
      }
      
      .infowrapper {
        height: 35px;
      }
      
      .infodiv span {
        height: 35px;
      }
      
      @keyframes slideText {
        0%, 12.5% { transform: translateY(0); }
        25%, 37.5% { transform: translateY(-35px); }
        50%, 62.5% { transform: translateY(-70px); }
        75%, 87.5% { transform: translateY(-105px); }
        100% { transform: translateY(0); }
      }
      
      .cardsdiv {
        padding: 15px 5px;
      }
      
      .cards {
        padding: 15px;
        min-height: 320px;
      }
      
      .card-image {
        height: 150px;
      }
      
      .circles {
        width: min(80px, 18vw);
        height: min(80px, 18vw);
        font-size: 10px;
      }
      
      .circles:hover {
        transform: scale(1.05);
      }
      
      .MAINCIRCLEDIV {
        gap: 10px;
      }
      
      .ourprojects,
      .skills,
      .contactus {
        padding: 0 10px;
      }
      
      .footerdiv {
        padding: 2% 10px;
      }
    .linkdiv {
        padding: 1px 1px;
      }
    }

    /* Extra Small Mobile */
    @media (max-width: 320px) {
      .headerdiv {
        width: 99vw;
        padding: 0 5px;
      }
      
      .logoimg {
        width: 80px;
        height: 40px;
      }
      
      .mainheading {
        font-size: clamp(20px, 8vw, 30px);
      }
      
      .circles {
        width: min(70px, 16vw);
        height: min(70px, 16vw);
        font-size: 9px;
      }
      
    .linkdiv {
        padding: 1px 1px;
      }
    }

.logodiv{
  width: 80px;
  height:80px;
border-radius:50%;
display: flex;align-items:center;justify-content: center;
}

.contactlogoimg{
  width:40px;
  height:40px;
filter: brightness(0) invert(1);
}