 /* Base Styles */
        .services-section {
          padding: 80px 0;
          /* background-color: #fbf5ea; */
          position: relative;
          overflow: hidden;
        }
        
        .section-header {
          text-align: center;
          margin-bottom: 50px;
          padding: 0 15px;
        }
        
        .section-badge {
          display: inline-block;
          background-color: #002777;
          color: white;
          padding: 6px 20px;
          border-radius: 30px;
          font-size: 0.9rem;
          font-weight: 600;
          letter-spacing: 1px;
          margin-bottom: 15px;
          text-transform: uppercase;
        }
        
        .section-title {
          color: #002777;
          font-size: 2.2rem;
          font-weight: 700;
          margin-bottom: 20px;
          position: relative;
          display: inline-block;
        }
        
        .section-title:after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 3px;
          background: #D3993F;
          border-radius: 3px;
        }
        
        .section-description {
          color: #555;
          font-size: 1.1rem;
          max-width: 800px;
          margin: 0 auto;
          line-height: 1.6;
        }
        
        /* Services Grid */
        .services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
          gap: 30px;
          margin-bottom: 50px;
        }
        
        .service-card {
          background: white;
          border-radius: 12px;
          padding: 30px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
          position: relative;
          overflow: hidden;
          border: 1px solid rgba(0, 39, 119, 0.1);
        }
        
        .service-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 39, 119, 0.1);
        }
        
        .service-card:before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 4px;
          height: 100%;
          background: linear-gradient(to bottom, #002777, #D3993F);
          transition: all 0.4s ease;
        }
        
        .service-card:hover:before {
          width: 6px;
        }
        
        .service-icon {
          width: 60px;
          height: 60px;
          background: rgba(0, 39, 119, 0.05);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 20px;
          color: #002777;
          transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
          background: #002777;
          color: white;
          transform: rotate(-5deg) scale(1.1);
        }
        
        .service-title {
          color: #002777;
          font-size: 1.4rem;
          font-weight: 600;
          margin-bottom: 20px;
          position: relative;
          padding-bottom: 10px;
        }
        
        .service-title:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 40px;
          height: 2px;
          background: #D3993F;
          transition: all 0.3s ease;
        }
        
        .service-card:hover .service-title:after {
          width: 60px;
        }
        
        .service-list {
          padding-left: 20px;
        }
        
        .service-list li {
          margin-bottom: 12px;
          color: #555;
          line-height: 1.6;
          position: relative;
          transition: all 0.3s ease;
        }
        
        .service-list li strong {
          color: #002777;
        }
        
        .service-list li:before {
          content: '';
          position: absolute;
          left: -20px;
          top: 10px;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: #D3993F;
          transition: all 0.3s ease;
        }
        
        .service-list li:hover {
          transform: translateX(5px);
        }
        
        .service-list li:hover:before {
          transform: scale(1.3);
        }
        
        /* Action Buttons */
        .action-buttons {
          display: flex;
          justify-content: center;
          gap: 20px;
          flex-wrap: wrap;
          margin-top: 40px;
        }
        
        .btn {
          padding: 12px 25px;
          border-radius: 8px;
          font-weight: 600;
          display: inline-flex;
          align-items: center;
          transition: all 0.3s ease;
          border: none;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .btn svg {
          margin-left: 8px;
          transition: all 0.3s ease;
        }
        
        .btn-primary {
          background: #002777;
          color: white;
        }
        
        .btn-primary:hover {
          background: #001a5a;
          transform: translateY(-3px);
          box-shadow: 0 8px 20px rgba(0, 39, 119, 0.2);
        }
        
        .btn-primary:hover svg {
          transform: translateX(5px);
        }
        
        .btn-secondary {
          background: #D3993F;
          color: white;
        }
        
        .btn-secondary:hover {
          background: #c08a36;
          transform: translateY(-3px);
          box-shadow: 0 8px 20px rgba(211, 153, 63, 0.2);
        }
        
        .btn-secondary:hover svg {
          transform: scale(1.1);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
          .services-grid {
            grid-template-columns: 1fr;
          }
        }
        
        @media (max-width: 768px) {
          .section-title {
            font-size: 1.8rem;
          }
          
          .service-card {
            padding: 25px;
          }
          
          .action-buttons {
            flex-direction: column;
            gap: 15px;
          }
          
          .btn {
            width: 100%;
            justify-content: center;
          }
        }
        
        /* Animation */
        [data-aos] {
          transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        [data-aos="fade-up"] {
          transform: translateY(30px);
          opacity: 0;
        }
        
        [data-aos].aos-animate {
          transform: translateY(0);
          opacity: 1;
        }