:root {
        /* Light Theme Colors */
        --primary: #6c5ce7;
        --primary-dark: #5649c0;
        --primary-light: #a29bfe;
        --secondary: #00ceff;
        --ternary: #32CD32;
        --accent: #ff7675;
        --text: #2d3436;
        --text-light: #636e72;
        --bg: #f5f6fa;
        --bg-secondary: #ffffff;
        --border: #dfe6e9;
        --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);

        /* Dark Theme Colors (will be set via JS) */
        --dark-text: #f5f6fa;
        --dark-text-light: #b2bec3;
        --dark-bg: #1a1a1a;
        --dark-bg-secondary: #2d3436;
        --dark-border: #3d484a;
        --dark-card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);

        /* Common Variables */
        --success: #00b894;
        --gradient-primary: linear-gradient(
          135deg,
          var(--primary) 0%,
          var(--secondary) 100%
        );
        --gradient-dark: linear-gradient(
          135deg,
          var(--dark-bg-secondary) 0%,
          #1a1a1a 100%
        );
        --gradient-card: linear-gradient(
          180deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(0, 0, 0, 0.7) 100%
        );

        --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
        --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.15);
        --shadow-sn: 0 7px 8px rgba(0, 0, 0, 0.2);
        --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.2);
        --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.1);

        --radius-sm: 8px;
        --radius-md: 12px;
        --radius-lg: 16px;
        --radius-xl: 24px;
        --radius-full: 999px;

        --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        --transition-fast: all 0.2s ease;

        /* Current Theme Variables (will be set via JS) */
        --current-bg: var(--bg);
        --current-bg-secondary: var(--bg-secondary);
        --current-text: var(--text);
        --current-text-light: var(--text-light);
        --current-border: var(--border);
        --current-card-shadow: var(--card-shadow);
      }

      /* Dark Mode Variables */
      body.dark-mode {
        --current-bg: var(--dark-bg);
        --current-bg-secondary: var(--dark-bg-secondary);
        --current-text: var(--dark-text);
        --current-text-light: var(--dark-text-light);
        --current-border: var(--dark-border);
        --current-card-shadow: var(--dark-card-shadow);
      }

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

      body {
        overflow: auto !important;
        font-family: "Poppins", sans-serif;
        color: var(--current-text);
        line-height: 1.7;
        background-color: var(--current-bg);
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        transition: background-color 0.5s ease, color 0.5s ease;
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: "Montserrat", sans-serif;
        font-weight: 800;
        line-height: 1.3;
        color: var(--current-text);
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      .container {
        width: 100%;
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .section {
        overflow: hidden;
        padding: 100px 0;
        position: relative;
      }

      @media (max-width: 768px) {
        .section {
          padding: 70px 0;
        }
      }

      .section-title {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-title .subtitle {
        display: inline-block;
        color: var(--primary);
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 15px;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .section-title .subtitle::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -8px;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: var(--gradient-primary);
        border-radius: 3px;
      }

      .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
      }

      .section-title p {
        color: var(--current-text-light);
        max-width: 700px;
        margin: 0 auto;
        font-size: 18px;
      }

      @media (max-width: 768px) {
        .section-title h2 {
          font-size: 32px;
        }
        .section-title p {
          font-size: 16px;
        }
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 32px;
        border-radius: var(--radius-full);
        font-weight: 600;
        font-size: 16px;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        gap: 10px;
        position: relative;
        overflow: hidden;
        z-index: 1;
      }

      .btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        z-index: -1;
        transition: var(--transition);
        opacity: 0;
      }

      .btn-primary {
        background: var(--gradient-primary);
        color: white;
        box-shadow: var(--shadow-sm);
      }

      .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
      }

      .btn-primary:hover::before {
        opacity: 1;
        transform: scale(1.05);
      }

      .btn-secondary {
        background-color: var(--current-bg-secondary);
        color: var(--primary);
        border: 2px solid var(--primary);
        box-shadow: var(--shadow-sm);
      }

      .btn-secondary:hover {
        background-color: var(--primary);
        color: white;
        transform: translateY(-5px);
      }
      .btn-ternary {
        /* background-color: var(--current-bg-ternary); */
        color: var(--ternary);
        border: 2px solid var(--ternary);
        box-shadow: var(--shadow-sn);
      }

      .btn-ternary:hover {
        background-color: var(--ternary);
        color: white;
        transform: translateY(-5px);
      }

      .btn-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient-primary);
        color: white;
        transition: var(--transition);
        box-shadow: var(--shadow-sm);
      }

      .btn-icon:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: var(--shadow-md);
      }

      /* Header */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        transition: var(--transition);
        padding: 20px 0;
        background-color: rgba(var(--current-bg-secondary), 0.98);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-sm);
      }

      .header.scrolled {
        padding: 15px 0;
        box-shadow: var(--shadow-md);
      }

      .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        transition: var(--transition);
      }

      .logo:hover {
        transform: scale(1.03);
      }

      .logo-img {
        width: 40px;
        height: 40px;
        transition: var(--transition);
      }

      .logo-text {
        font-family: "Montserrat", sans-serif;
        font-weight: 800;
        font-size: 24px;
        color: var(--primary);
        transition: var(--transition);
      }

      .logo-text span {
        color: var(--secondary);
      }

      .nav-links {
        color: white;
        display: flex;
        align-items: center;
        gap: 30px;
      }

      .nav-link {
        font-weight: 500;
        font-size: 16px;
        position: relative;
        transition: var(--transition);
      }

      .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: var(--transition);
      }

      .nav-link:hover {
        color: var(--primary);
      }

      .nav-link:hover::after {
        width: 100%;
      }

      .nav-link.active {
        color: var(--primary);
        font-weight: 600;
      }
      /*DropDownStarts*/
      /* Navigation Styles */
      .navigation {
          display: flex;
          justify-content: center;
          list-style: none;
          background: #333;
          padding: 15px 0;
          position: relative;
      }

      .navigation li {
          position: relative;
          margin: 0 15px;
      }

      .nav-link {
          color: white;
          text-decoration: none;
          font-weight: 500;
          padding: 10px 15px;
          display: block;
          transition: all 0.3s ease;
      }

      .nav-link:hover {
          color: #4CAF50;
      }

      /* Mega Menu Styles */
      .services-megamenu {
          display: none;
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          top: 100%;
          background-color: #222;
          width: 90%;
          max-width: 1000px;
          padding: 25px;
          box-shadow: 0 10px 25px rgba(0,0,0,0.2);
          z-index: 1000;
          border-radius: 4px;
          text-align: left;
          margin-top: 15px;
      }

      .megamenu-container {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 25px;
          width: 100%;
      }

      .nav-dropdown:hover .services-megamenu {
          display: block;
          animation: fadeIn 0.3s ease;
      }

      /* Category Styles */
      .services-category {
          color: #fff;
          font-size: 16px;
          font-weight: 600;
          margin-bottom: 15px;
          padding-bottom: 8px;
          border-bottom: 1px solid #444;
      }

      .services-list {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .services-list li {
          margin-bottom: 10px;
      }

      .services-list li a {
          color: #ccc;
          text-decoration: none;
          font-size: 14px;
          transition: all 0.3s ease;
          display: block;
          padding: 4px 0;
      }

      .services-list li a:hover {
          color: #fff;
          padding-left: 5px;
      }

      .services-list li a strong {
          color: #fff;
          font-weight: 600;
      }

      /* Responsive Dropdown */
      @media (max-width: 992px) {
          .navigation {
              flex-direction: column;
              padding: 0;
          }
          
          .navigation li {
              color: black;
              margin: 0;
              border-bottom: 1px solid #444;
          }
          .nav-link {
          color: black;
      }
          
          .nav-dropdown > .nav-link::after {
              content: "";
              float: right;
              margin-right: 15px;
              transition: transform 0.3s;
          }
          .nav-dropdown.active .services-megamenu {
        display: block !important;
      }
          .nav-dropdown.active > .nav-link::after {
              content: "";
          }
          
          .services-megamenu {
              position: static;
              display: none;
              width: 100%;
              transform: none;
              box-shadow: none;
              border-radius: 0;
              padding: 15px;
          }
          
          .nav-dropdown.active .services-megamenu {
              display: block;
          }
      }

      @media (max-width: 768px) {
          .megamenu-container {
              grid-template-columns: repeat(2, 1fr);
          }
      }

      @media (max-width: 576px) {
          .megamenu-container {
              grid-template-columns: 1fr;
          }
          
          .services-megamenu {
              max-height: 70vh;
              overflow-y: auto;
          }
      }
      /*Dropdown ends here*/
      .theme-toggle {
        background: none;
        border: none;
        color: var(--current-text);
        font-size: 22px;
        cursor: pointer;
        transition: var(--transition);
        margin-left: 20px;
      }

      .theme-toggle:hover {
        color: var(--primary);
        transform: rotate(30deg);
      }

      .mobile-menu-btn {
        display: none;
        font-size: 26px;
        color: var(--current-text);
        cursor: pointer;
        z-index: 1001;
        transition: var(--transition);
        background: none;
        border: none;
      }

      .mobile-menu-btn:hover {
        color: var(--primary);
      }

      /* Hero Section */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 150px 0 100px;
        position: relative;
        overflow: hidden;
      }

      .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
          no-repeat center center;
        background-size: cover;
        z-index: 1;
        transform: scale(1);
        transition: transform 10s ease;
      }

      .hero:hover .hero-bg {
        transform: scale(1.05);
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 2;
      }

      .hero-content {
        position: relative;
        z-index: 3;
        color: white;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
      }

      .hero-subtitle {
        font-size: 18px;
        color: var(--secondary);
        margin-bottom: 20px;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 0;
        animation: fadeInUp 0.8s ease 0.2s forwards;
      }

      .hero-title {
        font-size: 64px;
        line-height: 1.2;
        margin-bottom: 25px;
        opacity: 0;
        animation: fadeInUp 0.8s ease 0.4s forwards;
      }

      .hero-title span {
        color: var(--secondary);
        position: relative;
      }

      .hero-title span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 5px;
        width: 100%;
        height: 8px;
        background-color: var(--primary);
        opacity: 0.3;
        z-index: -1;
        border-radius: 4px;
      }

      .hero-text {
        font-size: 18px;
        margin-bottom: 40px;
        opacity: 0.9;
        opacity: 0;
        animation: fadeInUp 0.8s ease 0.6s forwards;
      }

      .hero-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeInUp 0.8s ease 0.8s forwards;
      }

      @media (max-width: 992px) {
        .hero-title {
          font-size: 48px;
        }
      }

      @media (max-width: 768px) {
        .hero {
          padding: 120px 0 80px;
        }
        .hero-title {
          font-size: 36px;
        }
        .hero-subtitle {
          font-size: 16px;
        }
        .hero-text {
          font-size: 16px;
        }
        .hero-buttons {
          flex-direction: column;
        }
      }

      /* Games Section */
      #games{
        padding: 50px 0; /* Optimal for team sections */
        margin: 0 auto; /* Center if needed */
        max-width: 1200px; /
      }
      .games {
        background-color: var(--current-bg-secondary);
        position: relative;
        overflow: hidden;
      }

      .games::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
          no-repeat center center;
        background-size: cover;
        opacity: 0.03;
        z-index: 1;
      }

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

      .games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
      }

      .game-card {
        background-color: var(--current-bg);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--current-card-shadow);
        transition: var(--transition);
        position: relative;
        border: 1px solid var(--current-border);
      }

      .game-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
      }

      .game-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--gradient-primary);
        color: white;
        padding: 6px 18px;
        border-radius: var(--radius-full);
        font-size: 12px;
        font-weight: 600;
        z-index: 2;
        box-shadow: var(--shadow-sm);
      }

      .game-media {
        height: 220px;
        overflow: hidden;
        position: relative;
      }

      .game-media::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-card);
        z-index: 1;
        opacity: 0;
        transition: var(--transition);
      }

      .game-card:hover .game-media::before {
        opacity: 1;
      }

      .game-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
      }

      .game-card:hover .game-media img {
        transform: scale(1.1);
      }

      .game-content {
        padding: 25px;
        position: relative;
      }

      .game-title {
        font-size: 22px;
        margin-bottom: 10px;
        transition: var(--transition);
      }

      .game-card:hover .game-title {
        color: var(--primary);
      }

      .game-description {
        color: var(--current-text-light);
        margin-bottom: 20px;
        font-size: 15px;
      }

      .game-links {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
      }

      .game-link {
        pointer-events: auto;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
        color: var(--primary);
        transition: var(--transition);
        padding: 8px 12px;
        border-radius: var(--radius-sm);
        background-color: rgba(108, 92, 231, 0.1);
      }

      .game-link:hover {
        background-color: rgba(108, 92, 231, 0.2);
        transform: translateY(-2px);
      }

      .game-link i {
        cursor: crosshair;
        font-size: 16px;
      }

      @media (max-width: 768px) {
        .games-grid {
          grid-template-columns: 1fr;
        }
      }

      /* About Section */
      .about {
        background: url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
          no-repeat center center;
        background-size: cover;
        position: relative;
        color: white;
      }

      .about::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(45, 52, 54, 0.9);
        z-index: 1;
      }

      .about-container {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }

      .about-content h2 {
        color: white;
        margin-bottom: 20px;
      }

      .about-content p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 20px;
      }

      .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 40px;
      }

      .stat-item {
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 25px 15px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition);
      }

      .stat-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
      }

      .stat-number {
        font-size: 36px;
        font-weight: 800;
        color: var(--secondary);
        margin-bottom: 5px;
      }

      .stat-label {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
      }

      .about-image {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        transform: perspective(1000px) rotateY(-5deg);
        transition: var(--transition);
      }

      .about-image:hover {
        transform: perspective(1000px) rotateY(0deg);
      }

      .about-image img {
        width: 100%;
        height: auto;
        display: block;
      }

      @media (max-width: 992px) {
        .about-container {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .about-image {
          order: -1;
          max-width: 600px;
          margin: 0 auto;
        }
      }

      @media (max-width: 576px) {
        .about-stats {
          grid-template-columns: 1fr 1fr;
        }
      }

      /* Team Section */
      #team {
        padding: 50px 0;
        margin: 0 auto;
        max-width: 1200px;
        background-color: var(--current-bg);
        position: relative;
      }

      .team::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
          no-repeat center center;
        background-size: cover;
        opacity: 0.03;
        z-index: 1;
      }

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

      .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
      }

      .team-member {
        background-color: var(--current-bg-secondary);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--current-card-shadow);
        transition: var(--transition);
        text-align: center;
        position: relative;
        border: 1px solid var(--current-border);
      }

      .team-member::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-primary);
        transition: var(--transition);
        opacity: 0;
      }

      .team-member:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-md);
      }

      .team-member:hover::before {
        opacity: 1;
      }

      .member-image {
        height: 300px;
        overflow: hidden;
        position: relative;
      }

      .member-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-card);
        z-index: 1;
        opacity: 0;
        transition: var(--transition);
      }

      .team-member:hover .member-image::before {
        opacity: 0.3;
      }

      .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
      }

      .team-member:hover .member-image img {
        transform: scale(1.05);
      }

      .member-info {
        padding: 25px;
      }

      .member-name {
        font-size: 20px;
        margin-bottom: 5px;
        transition: var(--transition);
      }

      .team-member:hover .member-name {
        color: var(--primary);
      }

      .member-role {
        color: var(--primary);
        font-weight: 500;
        margin-bottom: 15px;
        font-size: 16px;
      }

      .member-bio {
        color: var(--current-text-light);
        font-size: 14px;
        margin-bottom: 20px;
      }

      .member-social {
        pointer-events: auto !important; 
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
      }

      .social-link {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: var(--current-bg);
        color: var(--current-text);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
      }

      .social-link:hover {
        background: var(--gradient-primary);
        color: white;
        transform: translateY(-3px);
      }
        

      @media (max-width: 768px) {
        .team-grid {
          grid-template-columns: 1fr 1fr;
        }
      }

      @media (max-width: 576px) {
        .team-grid {
          grid-template-columns: 1fr;
        }
      }

      /* Contact Section */
      #contact{
        padding: 50px 0;
        margin: 0 auto; 
        max-width: 1200px;
      }
      .contact {
        background-color: var(--current-bg-secondary);
        position: relative;
      }

      .contact::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
          no-repeat center center;
        background-size: cover;
        opacity: 0.03;
        z-index: 1;
      }

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

      .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
      }

      .contact-info h2 {
        margin-bottom: 20px;
      }

      .contact-info p {
        color: var(--current-text-light);
        margin-bottom: 30px;
      }

      .info-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 25px;
        transition: var(--transition);
      }

      .info-item:hover {
        transform: translateX(5px);
      }

      .info-icon {
        width: 55px;
        height: 55px;
        border-radius: var(--radius-md);
        background: var(--gradient-primary);
        color: white;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
        box-shadow: var(--shadow-sm);
      }

      .info-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
      }

      .info-content p,
      .info-content a {
        color: var(--current-text-light);
        transition: var(--transition);
      }

      .info-content a:hover {
        color: var(--primary);
      }

      .contact-form .form-group {
        margin-bottom: 25px;
        position: relative;
      }

      .contact-form label {
        display: block;
        font-weight: 500;
        margin-bottom: 10px;
      }

      .contact-form input,
      .contact-form textarea {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid var(--current-border);
        border-radius: var(--radius-md);
        font-family: "Poppins", sans-serif;
        transition: var(--transition);
        background-color: var(--current-bg);
        color: var(--current-text);
        margin-bottom: 20px;
      }

      .contact-form input:focus,
      .contact-form textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
      }

      .contact-form textarea {
        min-height: 160px;
        resize: vertical;
      }

      @media (max-width: 992px) {
        .contact-container {
          grid-template-columns: 1fr;
          gap: 40px;
        }
      }

      /* Footer */
      .footer {
        background: var(--gradient-dark);
        color: white;
        padding: 80px 0 30px;
        position: relative;
      }

      .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 10px;
        background: var(--gradient-primary);
      }

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
      }

      .footer-col h3 {
        color: white;
        font-size: 20px;
        margin-bottom: 25px;
        position: relative;
      }

      .footer-col h3::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 40px;
        height: 3px;
        background: var(--gradient-primary);
        border-radius: 3px;
      }

      .footer-about p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 25px;
      }

      .footer-social {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .footer-social a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: var(--transition);
      }

      .footer-social a:hover {
        background: var(--gradient-primary);
        transform: translateY(-5px);
      }

      .footer-links {
       
        list-style: none;
      }

      .footer-links li {
     
        margin-bottom: 15px;
      }

      .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        transition: var(--transition);
        display: inline-block;
        position: relative;
      }

      .footer-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: var(--transition);
      }

      .footer-links a:hover {
        color: var(--secondary);
        transform: translateX(5px);
      }

      .footer-links a:hover::after {
        width: 20px;
      }

      .footer-newsletter p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 25px;
      }

      .newsletter-form {
        display: flex;
        gap: 10px;
      }

      .newsletter-form input {
        flex: 1;
        padding: 14px 15px;
        border-radius: var(--radius-md);
        border: none;
        font-family: "Poppins", sans-serif;
        background: rgba(255, 255, 255, 0.1);
        color: white;
      }

      .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.6);
      }

      .newsletter-form input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.15);
      }

      .newsletter-form button {
        background: var(--gradient-primary);
        color: white;
        border: none;
        border-radius: var(--radius-md);
        padding: 0 25px;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: var(--shadow-sm);
      }

      .newsletter-form button:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
      }

      @media (max-width: 768px) {
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
      }

      @media (max-width: 576px) {
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .newsletter-form {
          flex-direction: column;
        }
        .newsletter-form button {
          padding: 14px;
        }
      }

      /* Back to Top Button */
      .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--gradient-primary);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: var(--shadow-md);
        cursor: pointer;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
      }

      .back-to-top.active {
        opacity: 1;
        visibility: visible;
      }

      .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

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

      /* Responsive Navigation */
      @media (max-width: 992px) {
        .nav-links {
          position: fixed;
          top: 0;
          right: -100%;
          width: 300px;
          height: 100vh;
          background-color: var(--current-bg-secondary);
          flex-direction: column;
          align-items: flex-start;
          padding: 100px 30px 30px;
          box-shadow: var(--shadow-lg);
          transition: var(--transition);
          z-index: 1000;
        }

        .nav-links.active {
          right: 0;
        }

        .nav-link {
          font-size: 18px;
          padding: 10px 0;
          width: 100%;
        }

        .mobile-menu-btn {
          display: block;
        }

        .theme-toggle {
          margin-left: 15px;
          font-size: 20px;
        }
      }