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

      body {
          font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
          line-height: 1.6;
          color: #333;
          scroll-behavior: smooth;
          overflow-x: hidden;
          /* padding-top: 80px; /* Prevent layout shift */ */
      }

      /* Prevent flash of unstyled content */
      #header-placeholder {
          min-height: 80px;
          background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
          position: fixed;
          top: 0;
          width: 100%;
          z-index: 999;
          visibility: visible;
      }

      /* Ensure header loads immediately */
      .header {
          background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%) !important;
          position: fixed !important;
          top: 0 !important;
          width: 100% !important;
          height: 80px !important;
          z-index: 1000 !important;
          visibility: visible !important;
          opacity: 1 !important;
          display: flex !important;
          align-items: center !important;
          padding: 0 !important;
      }

      /* Header */
      .header {
          background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          color: white;
          padding: 0;
          position: fixed;
          height: 80px;
          width: 100%;
          top: 0;
          z-index: 1000;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          will-change: transform;
          display: flex;
          align-items: center;
      }

      @media (max-width: 768px) {
          .header {
              height: 70px;
              padding: 0.5rem 0;
              background: rgba(0, 0, 0, 0.98);
          }

          .dropdown:hover .dropdown-arrow {
              transform: none !important;
          }

          .main-logo {
              width: 40px !important;
              height: 32px !important;
              object-fit: contain !important;
              flex-shrink: 0 !important;
          }

          .partner-logo {
              width: 40px !important;
              height: 40px !important;
              object-fit: contain !important;
              flex-shrink: 0 !important;
          }

          .logo-separator {
              font-size: 1.2rem;
              margin: 0 0.3rem;
          }

          .nav-container {
              padding: 0 1rem;
              justify-content: space-between;
              align-items: center;
              height: 100%;
              display: flex;
              flex-wrap: nowrap;
          }

          .logo {
              font-size: 1rem;
              display: flex;
              align-items: center;
              flex: 0 0 auto;
              min-width: 120px;
          }

          .nav-menu {
              top: 70px;
              height: calc(100vh - 70px);
              padding: 0;
          }

          .navbar {
              margin-left: 0;
          }

          .cta-btn {
              padding: 0.5rem 0.8rem;
              font-size: 0.7rem;
              border-radius: 20px;
              white-space: nowrap;
              min-width: 70px;
              max-width: 90px;
              height: 35px;
              display: flex;
              align-items: center;
              justify-content: center;
              flex-shrink: 0;
          }

          .mobile-menu-btn {
              margin-left: 0.5rem;
              padding: 0.3rem;
              font-size: 1.5rem;
          }
      }

      @media (max-width: 480px) {
          .header {
              height: 90px;
              min-height: 60px;
              padding: 0.5rem 0;
          }

          .nav-container {
              padding: 0 1rem;
              gap: 0.5rem;
              display: flex;
              justify-content: space-between;
              align-items: center;
              width: 100%;
              flex-wrap: nowrap;
          }

          .main-logo {
              width: 35px !important;
              height: 28px !important;
              object-fit: contain !important;
              flex-shrink: 0 !important;
          }

          .partner-logo {
              width: 35px !important;
              height: 35px !important;
              object-fit: contain !important;
              flex-shrink: 0 !important;
          }

          .logo-separator {
              font-size: 1rem;
              margin: 0 0.3rem;
          }

          .logo {
              font-size: 1rem;
              flex: 1 1 auto;
              min-width: 0;
              order: 1;
              justify-content: flex-start;
          }

          .nav-menu {
              top: 60px;
              height: calc(100vh - 60px);
          }

          .cta-btn {
              padding: 0.4rem 0.6rem;
              min-width: 60px;
              max-width: 80px;
              width: auto;
              height: 35px;
              border-radius: 18px;
              display: flex;
              align-items: center;
              justify-content: center;
              font-size: 0.75rem;
              flex-shrink: 0;
              background: linear-gradient(135deg, #0084d5 0%, #0062b2 100%);
              color: white;
              border: 1px solid rgba(255, 255, 255, 0.2);
              font-weight: 600;
              text-indent: 0;
              overflow: visible;
              white-space: nowrap;
              text-decoration: none;
              order: 2;
          }

          .cta-btn::before {
              content: none;
          }

          .mobile-menu-btn {
              order: 3;
              margin-left: 0.5rem;
              margin-right: 0;
              padding: 0.3rem;
              font-size: 1.5rem;
              min-width: 40px;
              height: 40px;
              display: flex;
              align-items: center;
              justify-content: center;
          }
      }

      .header:hover {
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
      }

      .header img {
          padding: 0;
          object-fit: contain;
      }

      .nav-container {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0 2rem;
          height: 80px;
          width: 100%;
          box-sizing: border-box;
      }

      .logo {
          font-size: 1.8rem;
          font-weight: bold;
          color: #00d4ff;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 0.5rem;
          flex-shrink: 0;
          transition: transform 0.2s ease;
          height: 64px;
          min-height: 64px;
      }
      
      .logo:hover {
          transform: scale(1.02);
      }

      .logo-separator {
          font-size: 2rem;
          color: #ffffff;
          margin: 0 0.8rem;
          opacity: 0.7;
          line-height: 1;
          display: flex;
          align-items: center;
          height: 64px;
          flex-shrink: 0;
      }

      .partner-logo {
          height: 60px !important;
          width: 60px !important;
          padding: 0;
          object-fit: contain !important;
          flex-shrink: 0 !important;
          display: block !important;
          vertical-align: middle !important;
          max-width: 60px !important;
          max-height: 60px !important;
      }

      .main-logo {
          width: 80px !important;
          height: 64px !important;
          object-fit: contain !important;
          flex-shrink: 0 !important;
          display: block !important;
          vertical-align: middle !important;
          max-width: 80px !important;
          max-height: 64px !important;
      }

      .navbar {
          display: flex;
          align-items: center;
          background: transparent;
          z-index: 1000;
          justify-content: flex-start;
          margin-left: 1rem;
      }

      .nav-menu {
          display: flex;
          list-style: none;
          margin: 0;
          gap: 2rem;
          padding: 0 0 0 350px;
          align-items: center;
          justify-content: flex-start;
      }

      .nav-menu a {
          color: white;
          text-decoration: none;
          transition: color 0.3s;
          cursor: pointer;
          padding: 0.5rem 1rem;
          border-radius: 8px;
          font-weight: 500;
          display: flex;
          align-items: center;
          gap: 0.3rem;
      }

      .nav-menu a:hover,
      .nav-menu a.active {
          color: #00d4ff;
          background: rgba(0, 212, 255, 0.1);
      }

      /* Hide mobile-only items on desktop */
      .mobile-only {
          display: none;
      }

      /* Dropdown Styles */
      .dropdown {
          position: relative;
      }

      .dropdown-arrow {
          font-size: 0.8rem;
          transition: transform 0.3s ease;
      }

      .dropdown-menu {
          position: absolute;
          top: 100%;
          left: 0;
          background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          border-radius: 10px;
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
          border: 1px solid rgba(255, 255, 255, 0.1);
          min-width: 200px;
          opacity: 0;
          visibility: hidden;
          transform: translateY(-10px);
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          z-index: 1001;
          list-style: none;
          padding: 0.5rem 0;
          margin: 0;
      }

      .dropdown:hover .dropdown-menu {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
      }

      .dropdown:hover .dropdown-arrow {
          transform: rotate(360deg);
      }

      .dropdown-menu li {
          margin: 0;
      }

      .dropdown-link {
          display: block;
          color: #cbd5e1 !important;
          text-decoration: none;
          padding: 0.7rem 1.2rem;
          font-size: 0.9rem;
          font-weight: 400;
          transition: all 0.3s ease;
          border-radius: 0;
          background: transparent !important;
      }

      .dropdown-link:hover {
          color: #00d4ff !important;
          background: rgba(0, 212, 255, 0.1) !important;
          padding-left: 1.5rem;
      }

      .cta-btn {
          background: linear-gradient(135deg, #0084d5 0%, #0062b2 100%);
          color: white;
          padding: 0.8rem 1.5rem;
          margin: 0;
          border: none;
          border-radius: 25px;
          cursor: pointer;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          position: relative;
          overflow: hidden;
          box-shadow: 0 4px 15px rgba(0, 132, 213, 0.3);
          font-weight: 600;
          font-size: 0.9rem;
          flex-shrink: 0;
      }

      .cta-btn::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
          transition: left 0.5s;
      }

      .cta-btn:hover::before {
          left: 100%;
      }

      .cta-btn:hover {
          background: linear-gradient(135deg, #e55a2b 0%, #d64820 100%);
          transform: translateY(-2px) scale(1.05);
          box-shadow: 0 8px 25px rgba(229, 90, 43, 0.4);
      }

      /* Mobile Navigation Icons */
      .mobile-nav-icons {
          display: none;
          align-items: center;
          gap: 0.5rem;
          order: 2;
      }

      .mobile-home-icon,
      .mobile-contact-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          background: rgba(0, 212, 255, 0.1);
          border: 2px solid rgba(0, 212, 255, 0.3);
          border-radius: 50%;
          color: #00d4ff;
          text-decoration: none;
          transition: all 0.3s ease;
          font-size: 1.2rem;
      }

      .mobile-home-icon:hover,
      .mobile-contact-icon:hover {
          background: rgba(0, 212, 255, 0.2);
          transform: scale(1.1);
          box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
      }

      /* Mobile Menu */
      .mobile-menu-btn {
          display: none;
          background: none;
          border: none;
          color: white;
          cursor: pointer;
          z-index: 1001;
          position: relative;
          padding: 0.5rem;
          border-radius: 8px;
          transition: all 0.3s ease;
          order: 3;
          width: 40px;
          height: 40px;
          justify-content: center;
          align-items: center;
      }

      .mobile-menu-btn:hover {
          background: rgba(0, 212, 255, 0.1);
      }

      /* Hamburger Icon Animation */
      .mobile-menu-btn .icon {
          font-size: 1.8rem;
          color: white;
          display: block;
          line-height: 1;
          transition: all 0.3s ease;
      }

      /* Active state animation */
      .mobile-menu-btn.active .icon {
          transform: rotate(180deg);
      }

      .mobile-menu-btn .icon {
          font-size: 1.8rem;
          color: white;
          display: block;
          line-height: 1;
      }

      /* Icon System */
      .icon {
          display: inline-block;
          font-size: inherit;
          line-height: 1;
          text-align: center;
          vertical-align: middle;
      }

      .service-icon .icon,
      .floating-icon .icon {
          font-size: 2rem;
          display: block;
          text-align: center;
      }

      .social-icon {
          font-size: 1.2rem;
          display: inline-block;
          text-align: center;
          line-height: 1;
      }

      .contact-item .icon {
          font-size: 1.5rem;
          margin-right: 1rem;
          color: #00d4ff;
          display: inline-block;
          width: 30px;
          text-align: center;
      }

      .testimonial-rating .icon {
          color: #ffc107;
          font-size: 1rem;
          margin-right: 0.2rem;
      }

      .service-features .icon {
          color: #00d4ff;
          margin-right: 0.5rem;
          font-size: 0.9rem;
      }

      /* Page Container */
      .page {
          display: none;
          padding-top: 80px;
      }

      .page.active {
          display: block;
      }

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

      @media (max-width: 768px) {
          .page {
              padding-top: 60px;
          }

          .container {
              padding: 0 1.5rem;
          }
      }

      @media (max-width: 480px) {
          .page {
              padding-top: 70px;
          }

          .container {
              padding: 0 1rem;
          }
      }

      /* Hero Section */
      .hero {
          background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
          background-size: 400% 400%;
          animation: gradientShift 10s ease infinite;
          color: white;
          padding: 100px 0;
          height: 780px;
          position: relative;
          overflow: hidden;
      }

      .hero::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: radial-gradient(circle at 20% 50%, rgba(0, 132, 213, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(0, 98, 178, 0.1) 0%, transparent 50%);
          z-index: 1;
      }

      .hero .container {
          position: relative;
          z-index: 2;
          height: 100%;
          display: flex;
          align-items: center;
      }

      .hero-content {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 4rem;
          align-items: center;
          width: 100%;
      }

      .hero-text {
          text-align: start;
      }

      @keyframes gradientShift {
          0% { background-position: 0% 50%; }
          50% { background-position: 100% 50%; }
          100% { background-position: 0% 50%; }
      }

      @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(30px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

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

      @keyframes pulse {
          0%, 100% { opacity: 0.8; }
          50% { opacity: 1; }
      }

      .hero h1 {
          color: #0062b2;
          font-size: 3.5rem;
          margin-bottom: 1rem;
          animation: fadeInUp 1s ease;
      }

      .hero h2 {
          font-size: 1.5rem;
          margin-bottom: 1.5rem;
          color: #ffffff;
          animation: fadeInUp 1s ease 0.2s both;
      }

      .hero p {
          font-size: 1rem;
          margin-bottom: 2rem;
          line-height: 1.6;
          animation: fadeInUp 1s ease 0.4s both;
      }

      .hero-btn {
          background: #0075a7;
          color: white;
          padding: 1rem 2rem;
          border: solid white;
          border-radius: 30px;
          font-size: 1.1rem;
          cursor: pointer;
          transition: all 0.3s;
          animation: fadeInUp 1s ease 0.6s both;
      }

      .hero-btn:hover {
          background: #e55a2b;
          transform: translateY(-2px);
      }

      /* Hero Image Section */
      .hero-image {
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
          animation: fadeInUp 1s ease 0.8s both;
      }

      .hero-img {
          width: 100%;
          max-width: 500px;
          height: 400px;
          object-fit: cover;
          border-radius: 20px;
          box-shadow: 0 20px 40px rgba(0, 132, 213, 0.3);
          border: 2px solid rgba(0, 212, 255, 0.3);
          transition: all 0.4s ease;
      }

      .hero-img:hover {
          transform: scale(1.05);
          box-shadow: 0 25px 50px rgba(0, 132, 213, 0.4);
      }

      .hero-image-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          pointer-events: none;
      }

      .floating-icon {
          position: absolute;
          background: rgba(0, 212, 255, 0.9);
          color: white;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.5rem;
          animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
          box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
          backdrop-filter: blur(10px);
      }

      .icon-1 {
          top: 10%;
          right: 10%;
          animation-delay: 0s;
      }

      .icon-2 {
          bottom: 15%;
          right: 15%;
          animation-delay: 1s;
      }

      .icon-3 {
          top: 50%;
          left: -30px;
          animation-delay: 2s;
      }

      .icon-4 {
          top: 20%;
          left: -20px;
          animation-delay: 1.5s;
      }

      /* Responsive Design for Hero */
      @media (max-width: 1024px) {
          .hero-content {
              grid-template-columns: 1fr;
              gap: 3rem;
              text-align: center;
          }

          .hero-text {
              text-align: center;
          }

          .hero h1 {
              font-size: 2.8rem;
              line-height: 1.1;
          }

          .hero-img {
              max-width: 450px;
              height: 350px;
          }
      }

      @media (max-width: 768px) {
          .hero {
              height: auto;
              padding: 90px 0 50px 0;
              min-height: auto;
          }

          .hero-content {
              grid-template-columns: 1fr;
              gap: 2rem;
              padding: 0 1rem;
          }

          .hero h1 {
              font-size: 2rem;
              line-height: 1.1;
              margin-bottom: 1rem;
          }

          .hero h2 {
              font-size: 1.2rem;
              line-height: 1.3;
              margin-bottom: 1.5rem;
          }

          .hero p {
              font-size: 0.95rem;
              line-height: 1.5;
              margin-bottom: 1.8rem;
              max-width: 100%;
              margin-left: auto;
              margin-right: auto;
          }

          .hero-img {
              max-width: 100%;
              height: 250px;
              margin: 0 auto;
          }

          .floating-icon {
              width: 40px;
              height: 40px;
              font-size: 1rem;
          }

          .hero-btn {
              padding: 0.9rem 1.8rem;
              font-size: 1rem;
              font-weight: 600;
              border-radius: 30px;
              width: 100%;
              max-width: 280px;
          }
      }

      @media (max-width: 480px) {
          .hero {
              padding: 80px 0 40px 0;
          }

          .hero-content {
              padding: 0 0.5rem;
          }

          .hero h1 {
              font-size: 1.7rem;
              line-height: 1.1;
              margin-bottom: 0.8rem;
          }

          .hero h2 {
              font-size: 1rem;
              line-height: 1.2;
              margin-bottom: 1.2rem;
          }

          .hero p {
              font-size: 0.85rem;
              line-height: 1.4;
              margin-bottom: 1.5rem;
          }

          .hero-img {
              height: 200px;
              max-width: 100%;
          }

          .hero-btn {
              padding: 0.8rem 1.5rem;
              font-size: 0.9rem;
              width: 100%;
          }

          .floating-icon {
              width: 30px;
              height: 30px;
              font-size: 0.9rem;
          }

          .section {
              padding: 40px 0;
          }

          .section-title h2 {
              font-size: 1.6rem;
          }

          .section-title p {
              font-size: 0.9rem;
          }

          .container {
              padding: 0 0.5rem;
          }

          .services-grid {
              padding: 0 0.5rem;
          }

          .service-card {
              padding: 1.2rem;
          }

          .contact-form {
              padding: 1rem;
          }

          .form-group input,
          .form-group textarea,
          .form-group select {
              padding: 0.7rem;
              font-size: 16px;
          }

          .stats-grid {
              grid-template-columns: 1fr;
              gap: 15px;
          }

          .testimonial-card {
              padding: 1.2rem;
          }

          .team-card {
              padding: 1.2rem;
          }
      }

      /* Page Header */
      .page-header {
          background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
          color: white;
          padding: 100px 0 50px;
          text-align: center;
      }

      .page-header h1 {
          font-size: 3rem;
          margin-bottom: 1rem;
      }

      .page-header p {
          font-size: 1.2rem;
          max-width: 600px;
          margin: 0 auto;
      }

      @media (max-width: 768px) {
          .page-header {
              padding: 100px 0 30px;
          }

          .page-header h1 {
              font-size: 2.2rem;
              line-height: 1.2;
          }

          .page-header p {
              font-size: 1rem;
              line-height: 1.4;
          }
      }

      @media (max-width: 480px) {
          .page-header {
              padding: 140px 0 25px;
          }

          .page-header h1 {
              font-size: 1.8rem;
          }

          .page-header p {
              font-size: 0.9rem;
          }
      }
/* Optimized animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in {
    animation: fadeInUp 0.4s ease-out forwards;
}
      /* Section Styles */
      .section {
          padding: 80px 0;
      }

      .section-alt {
          background: #f8f9fa;
      }

      .section-title {
          text-align: center;
          margin-bottom: 3rem;
      }

      .section-title h2 {
          font-size: 2.5rem;
          color: #1e3c72;
          margin-bottom: 1rem;
      }

      .section-title p {
          font-size: 1.2rem;
          color: #666;
      }

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

      @media (max-width: 768px) {
          .services-grid {
              grid-template-columns: 1fr;
              gap: 1.5rem;
              margin-top: 2rem;
              padding: 0 1rem;
          }

          .service-card {
              padding: 1.5rem;
              margin: 0 auto;
              max-width: 100%;
          }

          .service-icon {
              width: 60px;
              height: 60px;
              line-height: 60px;
              font-size: 2rem;
          }

          .section {
              padding: 60px 0;
          }

          .section-title h2 {
              font-size: 2rem;
              line-height: 1.2;
          }

          .section-title p {
              font-size: 1rem;
              padding: 0 1rem;
          }

          .container {
              padding: 0 1rem;
              max-width: 100%;
          }

          .testimonial-grid {
              grid-template-columns: 1fr;
              gap: 1.5rem;
              padding: 0 1rem;
          }

          .team-grid {
              grid-template-columns: 1fr;
              gap: 1.5rem;
              padding: 0 1rem;
          }

          .stats-grid {
              grid-template-columns: repeat(2, 1fr);
              gap: 20px;
              padding: 0 1rem;
          }
      }

      @media (max-width: 480px) {
          .services-grid {
              gap: 1rem;
          }

          .service-card {
              padding: 1.2rem;
          }
      }

      .service-card {
          background: white;
          padding: 2rem;
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          text-align: center;
          position: relative;
          overflow: hidden;
          border: 1px solid rgba(0, 132, 213, 0.1);
      }

      .service-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(0, 132, 213, 0.05), transparent);
          transition: left 0.6s;
      }

      .service-card:hover::before {
          left: 100%;
      }

      .service-card:hover {
          transform: translateY(-10px) scale(1.02);
          box-shadow: 0 20px 40px rgba(0, 132, 213, 0.15);
          border-color: rgba(0, 132, 213, 0.3);
      }

      .service-icon {
          font-size: 3rem;
          color: #00d4ff;
          margin-bottom: 1rem;
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          display: inline-block;
          width: 80px;
          height: 80px;
          line-height: 80px;
          text-align: center;
      }

      .service-card:hover .service-icon {
          transform: scale(1.1) rotateY(360deg);
          color: #0084d5;
          text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
      }

      .service-card h3 {
          font-size: 1.5rem;
          color: #1e3c72;
          margin-bottom: 1rem;
      }

      .service-card p {
          color: #666;
          line-height: 1.6;
          margin-bottom: 1.5rem;
      }

      .service-features {
          list-style: none;
          text-align: left;
      }

      .service-features li {
          padding: 0.3rem 0;
          color: #333;
          display: flex;
          align-items: center;
      }

      /*Edited one*/
      .choose-section {
          padding: 80px 20px;
          background-color: #f7faff;
          text-align: center;
      }

      .section-title h2 {
          font-size: 32px;
          font-weight: 700;
          color: #0041c2;
          margin-bottom: 40px;
      }

      .services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 40px;
          max-width: 1100px;
          margin: 0 auto;
      }

      .service-card {
          background: #ffffff;
          border-radius: 15px;
          padding: 30px 20px;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .service-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
      }

      .service-icon {
          font-size: 40px;
          color: #0041c2;
          margin-bottom: 20px;
      }

      .service-card h3 {
          font-size: 20px;
          margin-bottom: 15px;
          color: #1a1a1a;
      }

      .service-card p {
          font-size: 15px;
          color: #555;
          line-height: 1.6;
      }

      /* Testimonials */
      .testimonials {
          padding: 100px 0;
          background: #f8f9fa;
          display: block !important;
          visibility: visible !important;
      }

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

      .testimonial-card {
          background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
          padding: 2rem;
          border-radius: 15px;
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          position: relative;
          border: 1px solid rgba(0, 132, 213, 0.1);
      }

      .testimonial-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 4px;
          background: linear-gradient(90deg, #00d4ff, #0084d5);
          border-radius: 15px 15px 0 0;
      }

      .testimonial-card:hover {
          transform: translateY(-8px) scale(1.02);
          box-shadow: 0 15px 35px rgba(0, 132, 213, 0.15);
      }

      .testimonial-rating {
          margin-bottom: 1rem;
      }

      .testimonial-text {
          color: #666;
          margin-bottom: 1.5rem;
          font-style: italic;
      }

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

      .author-info h4 {
          color: #1e3c72;
          margin-bottom: 0.2rem;
      }

      .author-info p {
          color: #666;
          font-size: 0.9rem;
      }

      /* About Content */
      .about-content {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 3rem;
          align-items: center;
          margin-bottom: 3rem;
      }

      .about-text h2 {
          font-size: 2.5rem;
          color: #1e3c72;
          margin-bottom: 1rem;
      }

      .about-text p {
          color: #666;
          margin-bottom: 1.5rem;
          line-height: 1.8;
      }

      .about-features {
          list-style: none;
      }

      .about-features li {
          padding: 0.5rem 0;
          color: #333;
      }

      .about-image {
          text-align: center;
      }

      .about-image img {
          max-width: 100%;
          border-radius: 10px;
      }

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

      .team-card {
          background: white;
          padding: 2rem;
          border-radius: 10px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          text-align: center;
      }

      .team-card img {
          width: 150px;
          height: 150px;
          border-radius: 50%;
          margin-bottom: 1rem;
      }

      .team-card h3 {
          color: #01266b;
          margin-bottom: 0.5rem;
      }

      .team-card .role {
          color: #00d4ff;
          margin-bottom: 1rem;
      }

      /* Stats Section */
      .stats {
          padding: 80px 20px;
          background: linear-gradient(to right, #f0f4ff, #ffffff);
          text-align: center;
      }

      .stats-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
          gap: 40px;
          max-width: 1000px;
          margin: 0 auto;
      }

      .stat-item {
          background: #fff;
          border-radius: 12px;
          padding: 30px 20px;
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .stat-item:hover {
          transform: translateY(-8px);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      }

      .stat-item h3 {
          font-size: 32px;
          color: #0041c2;
          margin-bottom: 10px;
          font-weight: 700;
      }

      .stat-item p {
          font-size: 16px;
          color: #555;
      }

      /* Contact Form */
      .contact-content {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 4rem;
          max-width: 1200px;
          margin: 0 auto;
      }

      @media (max-width: 768px) {
          .contact-content {
              grid-template-columns: 1fr;
              gap: 2rem;
              padding: 0 1rem;
          }

          .contact-form {
              padding: 1.5rem;
              margin: 0 auto;
              max-width: 100%;
          }

          .form-group {
              margin-bottom: 1.2rem;
          }

          .form-group input,
          .form-group textarea,
          .form-group select {
              padding: 0.8rem;
              font-size: 16px; /* Prevent zoom on iOS */
              width: 100%;
              box-sizing: border-box;
              border-radius: 8px;
          }

          .form-group textarea {
              height: 100px;
              resize: vertical;
          }

          .submit-btn {
              padding: 0.9rem 1.5rem;
              font-size: 1rem;
              width: 100%;
              border-radius: 8px;
          }

          .contact-item {
              flex-direction: column;
              text-align: center;
              margin-bottom: 1.2rem;
          }

          .contact-item svg,
          .contact-item .icon {
              margin-right: 0;
              margin-bottom: 0.5rem;
          }
      }

      .contact-form {
          background: #f8f9fa;
          padding: 2rem;
          border-radius: 10px;
      }

      .form-group {
          margin-bottom: 1.5rem;
      }

      .form-group label {
          display: block;
          margin-bottom: 0.5rem;
          color: #0c0c0c;
          font-weight: bold;
      }

      .form-group input,
      .form-group textarea,
      .form-group select {
          width: 100%;
          padding: 0.8rem;
          border: 1px solid #ddd;
          border-radius: 5px;
          font-size: 1rem;
      }

      .form-group textarea {
          height: 120px;
          resize: vertical;
      }

      .submit-btn {
          background: #023aa2;
          color: white;
          padding: 1rem 2rem;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          font-size: 1rem;
          transition: background 0.3s;
      }

      .submit-btn:hover {
          background: #033283;
      }

      .contact-info h3 {
          color: #1e3c72;
          margin-bottom: 1rem;
      }

      .contact-item {
          display: flex;
          align-items: center;
          margin-bottom: 1.5rem;
      }

      /* Footer */
      .footer {
          background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
          color: #ffffff;
          padding: 80px 0 0;
          position: relative;
          overflow: hidden;
          width: 100vw;
          margin-left: calc(-50vw + 50%);
          box-sizing: border-box;
      }

      .footer::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 3px;
          background: linear-gradient(90deg, transparent, #00d4ff, #0084d5, #00d4ff, transparent);
          animation: shimmer 3s ease-in-out infinite;
      }

      @keyframes shimmer {
          0%, 100% { opacity: 0.6; }
          50% { opacity: 1; }
      }

      .footer::after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(0, 132, 213, 0.05) 0%, transparent 50%);
          pointer-events: none;
      }

      .footer .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 30px;
          position: relative;
          z-index: 2;
      }

      .footer-content {
          display: grid;
          grid-template-columns: 2fr 1fr 1fr 1fr;
          gap: 50px;
          margin-bottom: 50px;
          align-items: start;
      }

      /* Company Info Section */
      .company-info {
          max-width: 400px;
      }

      .logo-container {
          margin-bottom: 15px;
      }

      .footer-logo {
          width: 180px;
          height: 80px;
          object-fit: contain;
          filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
          margin-bottom: 10px;
          transition: all 0.3s ease;
      }

      .footer-logo:hover {
          transform: scale(1.05);
          filter: brightness(1.3) drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
      }

      .company-info h3 {
          color: #00d4ff;
          font-size: 20px;
          font-weight: 700;
          margin: 15px 0 10px 0;
          position: relative;
          padding-bottom: 8px;
          text-transform: uppercase;
          letter-spacing: 1px;
      }

      .company-info h3::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 40px;
          height: 3px;
          background: linear-gradient(90deg, #00d4ff, #0084d5);
          border-radius: 2px;
      }

      .company-description {
          font-size: 15px;
          line-height: 1.7;
          color: #cbd5e1;
          margin-bottom: 20px;
          font-weight: 300;
      }

      .company-description b {
          color: #00d4ff;
          font-weight: 600;
      }

      .social-links {
          display: flex;
          gap: 15px;
          margin-top: 10px;
      }

      .social-links a {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 45px;
          height: 45px;
          background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 132, 213, 0.1));
          border: 2px solid rgba(0, 212, 255, 0.3);
          border-radius: 50%;
          color: #00d4ff;
          font-size: 18px;
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          position: relative;
          overflow: hidden;
          text-decoration: none;
      }

      .social-links a svg {
          width: 24px;
          height: 24px;
          fill: currentColor;
      }

      .social-links a i {
          font-size: 20px;
          line-height: 1;
      }

      /* SVG icon styling */
      .service-icon svg,
      .floating-icon svg {
          width: 100%;
          height: 100%;
          fill: currentColor;
      }

      .contact-item svg {
          width: 24px;
          height: 24px;
          fill: currentColor;
          margin-right: 1rem;
          flex-shrink: 0;
      }

      .testimonial-rating svg {
          margin: 0 2px;
      }

      .social-links a::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
          transition: left 0.5s;
      }

      .social-links a:hover::before {
          left: 100%;
      }

      .social-links a:hover {
          color: #ffffff;
          transform: translateY(-3px) scale(1.1);
          border-color: transparent;
      }

      .social-links a[aria-label="Facebook"]:hover {
          background: linear-gradient(135deg, #1877f2, #166fe5);
          box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
      }

      .social-links a[aria-label="LinkedIn"]:hover {
          background: linear-gradient(135deg, #0077b5, #005885);
          box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
      }

      .social-links a[aria-label="Instagram"]:hover {
          background: linear-gradient(135deg, #e4405f, #c13584);
          box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
      }

      /* Footer Sections */
      .footer-section {
          display: flex;
          flex-direction: column;
      }

      .footer-title {
          font-size: 18px;
          font-weight: 700;
          color: #00d4ff;
          margin-bottom: 25px;
          position: relative;
          padding-bottom: 12px;
          text-transform: uppercase;
          letter-spacing: 1px;
      }

      .footer-title::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 30px;
          height: 3px;
          background: linear-gradient(90deg, #00d4ff, #0084d5);
          border-radius: 2px;
      }

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

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

      .footer-links a {
          color: #cbd5e1;
          text-decoration: none;
          font-size: 15px;
          font-weight: 300;
          transition: all 0.3s ease;
          position: relative;
          padding-left: 0;
          line-height: 1.6;
          display: inline-block;
          cursor: pointer;
      }

      .footer-links a::before {
          content: '';
          position: absolute;
          left: -15px;
          top: 50%;
          transform: translateY(-50%);
          width: 0;
          height: 2px;
          background: linear-gradient(90deg, #00d4ff, #0084d5);
          transition: width 0.3s ease;
          border-radius: 1px;
      }

      .footer-links a:hover {
          color: #00d4ff;
          padding-left: 20px;
          transform: translateX(5px);
      }

      .footer-links a:hover::before {
          width: 12px;
      }

      /* Footer Bottom */
      .footer-bottom {
          width: 100vw;
          margin-left: calc(-50vw + 50%);
          background: linear-gradient(90deg, #020617 0%, #0f172a 50%, #020617 100%);
          color: #e2e8f0;
          box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
          letter-spacing: 0.02em;
          padding: 30px 0;
          font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
          font-size: 16px;
          position: relative;
          z-index: 10;
          border-top: 1px solid rgba(0, 212, 255, 0.1);
      }

      .footer-bottom::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 1px;
          background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
      }

      .footer-bottom-content {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 30px;
      }

      .footer-row {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          justify-content: space-between;
      }

      .copyright {
          margin: 0;
          font-size: 15px;
          opacity: 0.9;
          font-weight: 300;
      }

      .brand {
          font-weight: 700;
          color: #00d4ff;
          margin-left: 5px;
          letter-spacing: 0.05em;
          text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
      }

      .legal-links {
          display: flex;
          align-items: center;
          gap: 20px;
      }

      .legal-links a {
          text-decoration: none;
          color: #cbd5e1;
          font-weight: 400;
          padding: 8px 16px;
          border-radius: 8px;
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;
      }

      .legal-links a::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
          transition: left 0.5s;
      }

      .legal-links a:hover::before {
          left: 100%;
      }

      .legal-links a:hover {
          background: rgba(0, 212, 255, 0.1);
          color: #00d4ff;
          transform: translateY(-1px);
          box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
      }

      .separator {
          margin: 0 10px;
          color: #475569;
          font-size: 16px;
          opacity: 0.6;
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
          .footer-content {
              grid-template-columns: 1fr 1fr;
              gap: 40px;
          }

          .company-info {
              grid-column: 1 / -1;
              max-width: 100%;
              text-align: center;
              margin-bottom: 30px;
          }

          .footer-title::after {
              left: 50%;
              transform: translateX(-50%);
          }

          .company-info h3::after {
              left: 50%;
              transform: translateX(-50%);
          }
      }

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

          .footer-content {
              grid-template-columns: 1fr;
              gap: 35px;
              text-align: center;
          }

          .footer-bottom-content {
              padding: 0 1.5rem;
          }

          .footer-row {
              flex-direction: column;
              gap: 20px;
              text-align: center;
          }

          .social-links {
              justify-content: center;
              gap: 20px;
          }

          .legal-links {
              gap: 20px;
              justify-content: center;
          }

          .company-description {
              font-size: 14px;
              line-height: 1.6;
              margin-bottom: 15px;
          }

          .footer-logo {
              width: 150px;
              height: 70px;
          }

          .footer-links a {
              font-size: 16px;
              padding: 0.8rem 1.5rem;
          }
      }

      @media (max-width: 480px) {
          .footer .container {
              padding: 0 1rem;
          }

          .footer-content {
              gap: 25px;
          }

          .footer-logo {
              width: 120px;
              height: 60px;
          }

          .social-links a {
              width: 42px;
              height: 42px;
              font-size: 18px;
          }

          .social-links a svg {
              width: 22px;
              height: 22px;
          }

          .legal-links {
              flex-direction: column;
              gap: 15px;
          }

          .separator {
              display: none;
          }

          .company-description {
              font-size: 13px;
              margin-bottom: 12px;
          }

          .footer-title {
              font-size: 16px;
              margin-bottom: 20px;
          }

          .footer-links a {
              font-size: 15px;
              padding: 0.7rem 1.2rem;
          }
      }

      /*Clients Section*/
      .clients-section {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
      }

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

      .section-title h2 {
          font-size: 3rem;
          font-weight: 700;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
          margin-bottom: 10px;
      }

      .section-title p {
          font-size: 1.2rem;
          color: rgba(0, 0, 0, 0.9);
          font-weight: 300;
      }

      .clients-slider {
          overflow: hidden;
          background: rgba(255, 255, 255, 0.1);
          backdrop-filter: blur(10px);
          border-radius: 20px;
          padding: 40px 0;
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
          border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .clients-track {
          display: flex;
          animation: slide 20s linear infinite;
          width: calc(200px * 16);
      }

      .client-logo {
          flex: 0 0 200px;
          height: 100px;
          margin: 0 20px;
          background: white;
          border-radius: 15px;
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease;
          position: relative;
          overflow: hidden;
      }

      .client-logo:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      }

      .client-logo img {
          max-width: 80%;
          max-height: 60%;
          object-fit: contain;
          filter: grayscale(100%);
          transition: filter 0.3s ease;
      }

      .client-logo:hover img {
          filter: grayscale(0%);
      }

      .client-name {
          font-size: 1.1rem;
          font-weight: 600;
          color: #333;
          text-align: center;
      }

      /* Tech company logos */
      .logo-ras,
      .logo-pune,
      .logo-dy,
      .logo-letz,
      .logo-hen,
      .logo-san,
      .logo-sym,
      .logo-bodhi,
      .logo-first,
      .logo-bric {
          height: 100px;
          width: 100px;
      }

      @keyframes slide {
          0% {
              transform: translateX(0);
          }
          100% {
              transform: translateX(calc(-200px * 8 - 160px));
          }
      }

      .clients-track:hover {
          animation-play-state: paused;
      }

      /* Responsive design */
      @media (max-width: 768px) {
          .section-title h2 {
              font-size: 2rem;
          }

          .client-logo {
              flex: 0 0 150px;
              height: 80px;
              margin: 0 10px;
          }

          .clients-track {
              width: calc(150px * 16);
          }

          @keyframes slide {
              0% {
                  transform: translateX(0);
              }
              100% {
                  transform: translateX(calc(-150px * 8 - 80px));
              }
          }
      }

      /* Fade effect on edges */
      .clients-slider::before,
      .clients-slider::after {
          content: '';
          position: absolute;
          top: 0;
          width: 100px;
          height: 100%;
          z-index: 2;
          pointer-events: none;
      }

      .clients-slider::before {
          left: 0;
          background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
      }

      .clients-slider::after {
          right: 0;
          background: linear-gradient(to left, rgba(255, 255, 255, 0.1), transparent);
      }

      .clients-slider {
          position: relative;
      }

      /* Privacy Policy and Terms of Service Styles */
      .privacy-content,
      .terms-content {
          max-width: 800px;
          margin: 0 auto;
          padding: 0 2rem;
      }

      .policy-section {
          margin-bottom: 3rem;
          padding: 2rem;
          background: #ffffff;
          border-radius: 12px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          border-left: 4px solid #0084d5;
          transition: all 0.3s ease;
      }

      .policy-section:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(0, 132, 213, 0.15);
      }

      .policy-section h3 {
          color: #1e3c72;
          font-size: 1.5rem;
          font-weight: 700;
          margin-bottom: 1rem;
          padding-bottom: 0.5rem;
          border-bottom: 2px solid #e6f0ff;
      }

      .policy-section p {
          color: #666;
          line-height: 1.8;
          margin-bottom: 1rem;
          font-size: 1rem;
      }

      .policy-section ul {
          color: #666;
          line-height: 1.8;
          margin-left: 1.5rem;
          margin-bottom: 1rem;
      }

      .policy-section li {
          margin-bottom: 0.5rem;
          position: relative;
      }

      .policy-section li::marker {
          color: #0084d5;
      }

      .contact-info {
          background: #f8f9fa;
          padding: 1.5rem;
          border-radius: 8px;
          border: 1px solid #e9ecef;
          margin-top: 1rem;
      }

      .contact-info p {
          margin-bottom: 0.5rem;
          color: #333;
      }

      .contact-info strong {
          color: #1e3c72;
          font-weight: 600;
      }

      @media (max-width: 768px) {
          .privacy-content,
          .terms-content {
              padding: 0 1rem;
          }

          .policy-section {
              padding: 1.5rem;
              margin-bottom: 2rem;
          }

          .policy-section h3 {
              font-size: 1.3rem;
          }

          .policy-section p,
          .policy-section ul {
              font-size: 0.95rem;
          }

          .contact-info {
              padding: 1rem;
          }
      }

      @media (max-width: 480px) {
          .policy-section {
              padding: 1rem;
              margin-bottom: 1.5rem;
          }

          .policy-section h3 {
              font-size: 1.2rem;
          }

          .policy-section p,
          .policy-section ul {
              font-size: 0.9rem;
          }
      }

      /*Technologies Used*/
      body {
          margin: 0;
          font-family: 'Inter', sans-serif;
          background-color: #fff;
          color: #1a1a1a;
      }

      .tech-section {
          background-color: #e6f0ff;
          padding: 60px 20px;
      }

      .contain {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          flex-wrap: wrap;
          align-items: flex-start;
          justify-content: space-between;
      }

      .text-content {
          flex: 1 1 45%;
          padding: 20px;
      }

      .text-content h2 {
          font-size: 28px;
          color: #002b6d;
          margin-bottom: 20px;
      }

      .text-content p {
          margin-bottom: 15px;
          line-height: 1.6;
      }

      .logos {
          flex: 1 1 45%;
          display: flex;
          flex-wrap: wrap;
          gap: 20px;
          padding: 20px;
          justify-content: center;
      }

      .logos img {
          width: 50px;
          height: 50px;
          object-fit: contain;
      }

      .trusted-section {
          padding: 60px 20px;
          background-color: #ffffff;
          text-align: center;
      }

      .trusted-heading {
          color: #0041c2;
          font-size: 28px;
          font-weight: 700;
          margin-bottom: 10px;
      }

      .sub-heading {
          font-size: 20px;
          font-weight: 600;
          color: #333;
          margin-bottom: 25px;
      }

      .description {
          max-width: 1000px;
          margin: 0 auto 40px;
          line-height: 1.8;
          color: #444;
          font-size: 16px;
          padding: 0 10px;
      }

      .steps {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 40px;
      }

      .step {
          width: 150px;
          text-align: center;
      }

      .step img {
          width: 80px;
          height: 80px;
          background: #f0f4ff;
          border-radius: 50%;
          padding: 15px;
          margin-bottom: 10px;
          border: 2px solid #0041c2;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      }

      .step p {
          font-size: 14px;
          font-weight: 500;
          color: #111;
      }

      .Officer {
          height: 150px;
          width: 150px;
          border-radius: 50%;
          padding-left: 25px 40px 20px 40px;
      }

      /* Added spacing to the header navigation items */
      .nav-menu li {
          margin: 0 1rem;
      }

      .nav-menu li:last-child {
          margin-right: 2rem;
      }

      /* Mobile Menu Toggle Function */
      .nav-menu.mobile-active {
          left: 50% !important;
          transform: translateX(-50%);
      }

      /* Mobile Menu Overlay */
      .menu-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          z-index: 998;
          opacity: 0;
          visibility: hidden;
          transition: all 0.3s ease;
      }

      .menu-overlay.active {
          opacity: 1;
          visibility: visible;
      }

      /* Prevent body scroll when menu is open */
      body.menu-open {
          overflow: hidden;
          position: fixed;
          width: 100%;
      }

      /* Mobile Menu Styles */
      @media (max-width: 768px) {
          .header {
              height: 70px;
              padding: 0.5rem 0;
              background: rgba(0, 0, 0, 0.98);
          }

          .nav-container {
              display: flex;
              align-items: center;
              justify-content: space-between;
              width: 100%;
              padding: 0 1rem;
              height: 100%;
          }

          .logo {
              order: 1;
              font-size: 1rem;
              flex: 0 0 auto;
              max-width: 50%;
          }

          .navbar {
              order: 2;
              margin: 0;
          }

          .mobile-nav-icons {
              display: none;
          }

          .mobile-menu-btn {
              display: flex;
              order: 3;
              background: none;
              border: none;
              color: white;
              cursor: pointer;
              z-index: 1001;
              padding: 0.5rem;
              border-radius: 8px;
              transition: all 0.3s ease;
          }

          .mobile-menu-btn:hover {
              background: rgba(0, 212, 255, 0.1);
          }

          /* .mobile-menu-btn.active {
              background: rgba(229, 90, 43, 0.1);
          } */

          .cta-btn {
              display: none;
          }

          .nav-menu {
              position: fixed;
              top: 70px;
              right: -100%;
              width: 320px;
              max-width: 85vw;
              height: calc(100vh - 70px);
              background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
              backdrop-filter: blur(15px);
              -webkit-backdrop-filter: blur(15px);
              flex-direction: column;
              justify-content: flex-start;
              align-items: center;
              /* transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease; */
              padding: 2rem 1rem;
              z-index: 999;
              box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
              overflow-y: auto;
              opacity: 0;
              visibility: hidden;
              gap: 0;
              border-left: 2px solid rgba(0, 212, 255, 0.3);
          }

          .nav-menu.active,
          .nav-menu.mobile-active {
              right: 0 !important;
              opacity: 1;
              visibility: visible;
          }

          .nav-menu li {
              width: 100%;
              max-width: 320px;
              margin: 0 0 1.2rem 0;
              list-style: none;
          }

          .nav-menu li:first-child a {
              background: linear-gradient(135deg, #0084d5 0%, #0062b2 100%);
              color: white;
              border: 2px solid rgba(255, 255, 255, 0.2);
              font-size: 1.2rem;
              padding: 1.2rem 2rem;
              min-height: 60px;
              border-radius: 15px;
              box-shadow: 0 8px 25px rgba(0, 132, 213, 0.4);
          }

          .nav-menu li:first-child a:hover {
              background: linear-gradient(135deg, #e55a2b 0%, #d64820 100%);
              transform: translateY(-3px);
              box-shadow: 0 12px 30px rgba(229, 90, 43, 0.5);
          }

          .nav-menu a {
              display: flex;
              align-items: center;
              justify-content: center;
              width: 100%;
              padding: 1.2rem 1.5rem;
              min-height: 60px;
              font-size: 1.1rem;
              font-weight: 600;
              color: #ffffff;
              background: rgba(255, 255, 255, 0.08);
              border: 2px solid rgba(255, 255, 255, 0.1);
              border-radius: 15px;
              text-decoration: none;
              transition: all 0.3s ease;
              backdrop-filter: blur(10px);
              text-align: center;
              box-sizing: border-box;
              position: relative;
              overflow: hidden;
          }

          .nav-menu a::before {
              content: '';
              position: absolute;
              top: 0;
              left: -100%;
              width: 100%;
              height: 100%;
              background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
              transition: left 0.5s;
          }

          .nav-menu a:hover::before,
          .nav-menu a:active::before {
              left: 100%;
          }

          .nav-menu a:hover,
          .nav-menu a:active {
              background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 132, 213, 0.2));
              border-color: rgba(0, 212, 255, 0.5);
              color: #00d4ff;
              transform: translateX(5px);
              box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
          }

          /* Dropdown Styles for Mobile */
          .dropdown {
              width: 100%;
          }

          .dropdown > a {
              background: rgba(0, 132, 213, 0.15);
              border-color: rgba(0, 132, 213, 0.3);
          }

          .dropdown-menu {
              position: static;
              opacity: 1;
              visibility: visible;
              transform: none;
              background: rgba(0, 50, 100, 0.2);
              box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
              margin: 0.8rem 0 0 0;
              border-radius: 10px;
              width: 100%;
              max-width: 100%;
              padding: 0.5rem 0;
              border: 1px solid rgba(0, 132, 213, 0.2);
          }

          .dropdown-link {
              font-size: 1rem !important;
              padding: 0.9rem 1.5rem !important;
              color: #cbd5e1 !important;
              background: transparent !important;
              border-radius: 8px !important;
              margin: 0.2rem 0.5rem !important;
              display: block;
              width: calc(100% - 1rem) !important;
              box-sizing: border-box;
              text-decoration: none;
              transition: all 0.3s ease;
          }

          .dropdown-link:hover {
              color: #00d4ff !important;
              background: rgba(0, 212, 255, 0.15) !important;
              padding-left: 2rem !important;
              transform: translateX(5px);
          }

          /* Show mobile-only items and style contact button */
          .mobile-only {
              display: block;
              margin-top: 1.5rem;
          }

          .mobile-cta {
              background: linear-gradient(135deg, #e55a2b 0%, #d64820 100%) !important;
              color: white !important;
              border: 2px solid rgba(255, 255, 255, 0.2) !important;
              font-size: 1.1rem !important;
              padding: 1.2rem 2rem !important;
              min-height: 60px !important;
              border-radius: 25px !important;
              font-weight: 700 !important;
              box-shadow: 0 8px 25px rgba(229, 90, 43, 0.4) !important;
          }

          .mobile-cta:hover {
              background: linear-gradient(135deg, #d64820 0%, #b83e1a 100%) !important;
              transform: translateY(-3px) !important;
              box-shadow: 0 12px 30px rgba(229, 90, 43, 0.6) !important;
              color: white !important;
          }
      }

      @media (max-width: 480px) {
          .header {
              height: 65px;
              padding: 0.4rem 0;
          }

          .nav-container {
              padding: 0 0.8rem;
          }

          .logo {
              font-size: 0.9rem;
              max-width: 60%;
          }

          .nav-menu {
              top: 65px;
              height: calc(100vh - 65px);
              padding: 1.5rem 0.8rem;
          }

          .nav-menu li {
              max-width: 300px;
              margin-bottom: 1rem;
          }

          .nav-menu a {
              font-size: 1rem;
              padding: 0.9rem 1.2rem;
              min-height: 50px;
          }

          .nav-menu li:first-child a {
              font-size: 1.1rem;
              padding: 1.1rem 1.8rem;
              min-height: 55px;
          }

          .dropdown-link {
              font-size: 0.9rem !important;
              padding: 0.8rem 1.2rem !important;
          }

          .mobile-menu-btn {
              font-size: 1.6rem;
              padding: 0.4rem;
          }
      }

      /* Documentation Page Styles */
      .documentation-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
          gap: 2rem;
          margin-top: 3rem;
      }

      .doc-card {
          background: white;
          border-radius: 15px;
          padding: 2rem;
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          border: 1px solid rgba(0, 132, 213, 0.1);
          position: relative;
          overflow: hidden;
      }

      .doc-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(0, 132, 213, 0.05), transparent);
          transition: left 0.6s;
      }

      .doc-card:hover::before {
          left: 100%;
      }

      .doc-card:hover {
          transform: translateY(-8px) scale(1.02);
          box-shadow: 0 20px 40px rgba(0, 132, 213, 0.15);
          border-color: rgba(0, 132, 213, 0.3);
      }

      .doc-icon {
          width: 80px;
          height: 80px;
          background: linear-gradient(135deg, #00d4ff 0%, #0084d5 100%);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 1.5rem;
          font-size: 2rem;
          transition: all 0.4s ease;
      }

      .doc-card:hover .doc-icon {
          transform: scale(1.1) rotateY(360deg);
          box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
      }

      .doc-content h3 {
          font-size: 1.4rem;
          color: #1e3c72;
          margin-bottom: 1rem;
          font-weight: 700;
      }

      .doc-meta {
          display: flex;
          gap: 1rem;
          margin-bottom: 1rem;
          flex-wrap: wrap;
      }

      .doc-type, .doc-size {
          background: rgba(0, 132, 213, 0.1);
          color: #0084d5;
          padding: 0.3rem 0.8rem;
          border-radius: 20px;
          font-size: 0.8rem;
          font-weight: 600;
      }

      .doc-summary {
          color: #666;
          line-height: 1.7;
          margin-bottom: 1.5rem;
          font-size: 0.95rem;
      }

      .doc-features ul {
          list-style: none;
          margin-bottom: 2rem;
      }

      .doc-features li {
          display: flex;
          align-items: center;
          margin-bottom: 0.5rem;
          color: #333;
          font-size: 0.9rem;
      }

      .doc-features li .icon {
          color: #00d4ff;
          margin-right: 0.8rem;
          font-weight: bold;
      }

      .doc-actions {
          display: flex;
          gap: 1rem;
          flex-wrap: wrap;
      }

      .download-btn, .view-btn {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          padding: 0.8rem 1.5rem;
          border-radius: 25px;
          text-decoration: none;
          font-weight: 600;
          font-size: 0.9rem;
          transition: all 0.3s ease;
          border: 2px solid;
      }

      .download-btn.primary {
          background: linear-gradient(135deg, #0084d5 0%, #0062b2 100%);
          color: white;
          border-color: transparent;
      }

      .download-btn.primary:hover {
          background: linear-gradient(135deg, #e55a2b 0%, #d64820 100%);
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(229, 90, 43, 0.4);
      }

      .view-btn.secondary {
          background: transparent;
          color: #0084d5;
          border-color: #0084d5;
      }

      .view-btn.secondary:hover {
          background: #0084d5;
          color: white;
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(0, 132, 213, 0.3);
      }

      .doc-info-section {
          margin-top: 4rem;
          padding: 3rem 0;
      }

      .info-card {
          background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
          padding: 3rem;
          border-radius: 20px;
          text-align: center;
          border: 1px solid rgba(0, 132, 213, 0.1);
      }

      .info-card h3 {
          color: #1e3c72;
          font-size: 1.8rem;
          margin-bottom: 1rem;
      }

      .info-card p {
          color: #666;
          font-size: 1.1rem;
          margin-bottom: 2rem;
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
      }

      .info-actions {
          display: flex;
          gap: 2rem;
          justify-content: center;
          align-items: center;
          flex-wrap: wrap;
      }

      .email-link {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          color: #0084d5;
          text-decoration: none;
          font-weight: 600;
          transition: all 0.3s ease;
      }

      .email-link:hover {
          color: #e55a2b;
          transform: translateY(-1px);
      }

      .guidelines-section {
          margin-top: 4rem;
          padding: 3rem 0;
      }

      .guidelines-section h3 {
          color: #1e3c72;
          font-size: 1.8rem;
          text-align: center;
          margin-bottom: 2rem;
      }

      .guidelines-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 2rem;
      }

      .guideline-item {
          text-align: center;
          padding: 2rem;
          background: white;
          border-radius: 15px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          transition: all 0.3s ease;
      }

      .guideline-item:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 25px rgba(0, 132, 213, 0.15);
      }

      .guideline-item .icon {
          font-size: 2.5rem;
          margin-bottom: 1rem;
          display: block;
      }

      .guideline-item h4 {
          color: #1e3c72;
          font-size: 1.2rem;
          margin-bottom: 0.8rem;
      }

      .guideline-item p {
          color: #666;
          font-size: 0.9rem;
          line-height: 1.6;
      }

      @media (max-width: 768px) {
          .documentation-grid {
              grid-template-columns: 1fr;
              gap: 1.5rem;
              margin-top: 2rem;
          }

          .doc-card {
              padding: 1.5rem;
          }

          .doc-icon {
              width: 60px;
              height: 60px;
              font-size: 1.5rem;
          }

          .doc-content h3 {
              font-size: 1.2rem;
          }

          .doc-summary {
              font-size: 0.9rem;
          }

          .doc-actions {
              flex-direction: column;
          }

          .download-btn, .view-btn {
              justify-content: center;
              width: 100%;
          }

          .info-card {
              padding: 2rem;
          }

          .info-card h3 {
              font-size: 1.5rem;
          }

          .info-actions {
              flex-direction: column;
              gap: 1rem;
          }

          .guidelines-grid {
              grid-template-columns: 1fr;
              gap: 1.5rem;
          }

          .guideline-item {
              padding: 1.5rem;
          }
      }

      @media (max-width: 480px) {
          .doc-card {
              padding: 1rem;
          }

          .doc-meta {
              flex-direction: column;
              gap: 0.5rem;
          }

          .doc-type, .doc-size {
              align-self: flex-start;
          }

          .info-card {
              padding: 1.5rem;
          }

          .info-card h3 {
              font-size: 1.3rem;
          }

          .info-card p {
              font-size: 1rem;
          }
      }

      /* Add touch-friendly mobile styles */
      @media (max-width: 768px) {
          /* Prevent zoom on input focus */
          input, textarea, select {
              font-size: 16px !important;
              -webkit-appearance: none;
              -moz-appearance: none;
              appearance: none;
          }

          .nav-container {
              padding: 0 1rem;
              flex-wrap: nowrap;
          }

          .hero {
              padding: 4rem 1rem;
              text-align: center;
          }

          /* Ensure touch targets are large enough */
          .nav-menu a {
              min-height: 48px;
              display: flex;
              align-items: center;
              justify-content: center;
          }

          .hero h1 {
              font-size: 2.5rem;
              line-height: 1.2;
              margin-bottom: 1rem;
          }

          .hero p {
              font-size: 1rem;
              margin-bottom: 2rem;
          }

          .hero-buttons {
              flex-direction: column;
              gap: 1rem;
              align-items: center;
          }

          .hero-buttons .btn {
              width: 100%;
              max-width: 250px;
              text-align: center;
          }

          .services-grid, .features-grid {
              grid-template-columns: 1fr;
              gap: 1.5rem;
              padding: 0 1rem;
          }

          .contact-form {
              padding: 0 1rem;
          }

          .contact-form .form-row {
              flex-direction: column;
          }

          .form-group {
              margin-bottom: 1rem;
          }

          .form-group input,
          .form-group select,
          .form-group textarea {
              width: 100%;
              box-sizing: border-box;
          }

          .submit-btn {
              width: 100%;
          }

          .testimonials-container {
              flex-direction: column;
              padding: 0 1rem;
          }

          .footer-content {
              flex-direction: column;
              text-align: center;
              padding: 2rem 1rem;
          }

          .section {
              padding: 3rem 1rem;
          }

          .container {
              padding: 0 1rem;
          }
      }

      @media (max-width: 480px) {
          .hero h1 {
              font-size: 2rem;
          }

          .hero p {
              font-size: 0.9rem;
          }

          .nav-container {
              padding: 0 0.5rem;
          }

          .section {
              padding: 2rem 0.5rem;
          }
      }

/*Handling career in resposiveness*/

      /* Services Page Styles */
      .services-page {
          min-height: 100vh;
          background: linear-gradient(135deg, #fdfdfd 0%, #cfe5fb 100%);
          position: relative;
          overflow-x: hidden;
      }

      /* Optimized Background */
      .services-page::before {
          content: '';
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(135deg, #fdfdfd 0%, #cfe5fb 100%);
          z-index: 0;
          will-change: transform;
      }

      /* Container */
      .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
          position: relative;
          z-index: 1;
      }

      /* Page Header */
      .page-header {
          text-align: center;
          padding: 100px 0 80px;
          position: relative;
      }

      .page-header h1 {
          font-size: 3.5rem;
          font-weight: 700;
          color: #000000;
          margin-bottom: 20px;
          opacity: 0;
          transform: translateY(30px);
          animation: fadeInUp 1s ease-out 0.3s forwards;
          text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      }

      .page-header p {
          font-size: 1.3rem;
          color: #666;
          max-width: 600px;
          margin: 0 auto;
          line-height: 1.6;
          opacity: 0;
          transform: translateY(30px);
          animation: fadeInUp 1s ease-out 0.5s forwards;
      }

